mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: 6ba02e56592726539fcf3f6c7fb0d4dc9d1b9124 [formerly abdc74664aebbcd85a44773b52891fec37fbae03] [formerly 7ef58d777b942b3317ec5fa7f43c5dea9475784c [formerly f2f5d57a68]]
Former-commit-id: c27ede01af7875d4be750827314ab61108ea9254 [formerly 622304bf05d27007e58c96ed15cca16edd2c4e3f]
Former-commit-id: 039672870a5f38f87b19aaaf2cb2823ea86150fc
23 lines
331 B
YAML
23 lines
331 B
YAML
name: test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
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: yarn --frozen-lockfile
|
|
- run: yarn test:prod
|