This commit is contained in:
parent
c94cca2272
commit
5081b9fec9
1 changed files with 1 additions and 1 deletions
18
.github/workflows/CI.yml
vendored
Normal file
18
.github/workflows/CI.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
CI:
|
||||
runs-on: node
|
||||
name: CI
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'latest'
|
||||
- name: install dependencies
|
||||
run: npm install
|
||||
- name: run tests
|
||||
run: npm test
|
Loading…
Add table
Add a link
Reference in a new issue