mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: e94256b046c20d270ad379014828450b199370f2 [formerly 94a7b5c65d]
Former-commit-id: d8846f8c85a1a70e6e7f9912392692b011ef00fd
24 lines
334 B
YAML
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
|