This commit is contained in:
parent
1bee0619b4
commit
582f64eff2
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
- name: Install
|
||||
run: |
|
||||
cd backend && npm install
|
||||
- name: Test
|
||||
run: cd backend && npm test
|
||||
Loading…
Reference in New Issue
Block a user