mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-12 15:25:58 +00:00
22 lines
389 B
YAML
22 lines
389 B
YAML
name: build test CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build-test:
|
|
name: Build Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Node 19
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '19'
|
|
|
|
- name: npm-install
|
|
run: npm install
|
|
|
|
- name: npm-build
|
|
run: npm run build |