mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: 21fcc0cc13dda0205b3fb719230acb904ba4b6d9 [formerly 9577ce7d8eb1abb6aa9ed3733c5cb9a49809ab24] [formerly 4e39fb1c26ddd64bc1c7eb2d537288eb9f583be4 [formerly e397192529]]
Former-commit-id: 834de4be2ec13fb7dd2065ad2fdb25db75695f29 [formerly d3af13a08da66d6f85b0d78dbd6b28dc6604a93d]
Former-commit-id: 37da5467c05ab4397ead0b6933f9e57d1ec30131
23 lines
318 B
YAML
23 lines
318 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: npm ci
|
|
- run: npm run test:prod
|