Skip to content

Commit

Permalink
add test github action config
Browse files Browse the repository at this point in the history
  • Loading branch information
katat committed Jan 25, 2023
1 parent 29f8a7d commit c9a0ff3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Download circom
run: wget https://github.com/iden3/circom/releases/latest/download/circom-linux-amd64 -O /usr/local/bin/circom
- name: Update permission
run: chmod +x /usr/local/bin/circom
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Create build folder
run: mkdir build
- name: Run tests
run: yarn test

0 comments on commit c9a0ff3

Please sign in to comment.