chore: switch to npm

This commit is contained in:
StarpTech 2023-04-18 12:44:34 +02:00
parent 509c825bc9
commit db3986e6fe

24
.github/workflows/ci.yaml vendored Normal file
View File

@ -0,0 +1,24 @@
name: CI
on:
push:
branches:
- main
concurrency:
group: ${{github.workflow}}-${{github.head_ref}}
cancel-in-progress: true
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci
- run: npm test