Skip to content

Commit

Permalink
add helpers tests to GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
saleel committed Feb 6, 2024
1 parent 3b76c5f commit 3b68b06
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .circleci/config.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,31 @@ jobs:
- name: Run Tests
working-directory: ./packages/circuits
run: yarn test

run_helpers_tests:
runs-on: ubuntu-latest
environment: development
steps:
- uses: actions/checkout@v3

- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'

- name: Install Yarn dependencies
working-directory: ./packages/helpers
run: yarn install

- name: Run test
working-directory: ./packages/helpers
run: yarn test

- name: Run build
working-directory: ./packages/helpers
run: yarn build

- name: Run Tests
working-directory: ./packages/helpers
run: yarn test

0 comments on commit 3b68b06

Please sign in to comment.