mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
23 lines
506 B
YAML
23 lines
506 B
YAML
name: build test CI
|
|
|
|
on: [push,pull_request_target]
|
|
|
|
jobs:
|
|
build-test:
|
|
name: Build Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.7
|
|
|
|
- name: Setup Node 20
|
|
uses: actions/setup-node@26961cf329f22f6837d5f54c3efd76b480300ace # v4.0.3
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: npm-install
|
|
run: npm install
|
|
|
|
- name: npm-build
|
|
run: npm run build
|