Files
zk-kit/.github/workflows/test.yml
cedoor 5ce1068619 ci: remove npm-publish workflow
Former-commit-id: e94256b046c20d270ad379014828450b199370f2 [formerly 94a7b5c65d]
Former-commit-id: d8846f8c85a1a70e6e7f9912392692b011ef00fd
2021-10-19 12:19:12 +02:00

24 lines
334 B
YAML

name: test
on:
pull_request:
push:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: npm ci
- run: npm run lint
- run: npm test