2023-02-16 18:16:37 +00:00

15 lines
358 B
YAML

name: Continuous integration
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Create npm configuration
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc
env:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- run: npm ci
- run: npm run test