Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
ci: 🎡 Remove build step from Github Actions
Browse files Browse the repository at this point in the history
The existing npm/yarn build step runs node with app.js.  This fails with
the jspsych 7 dependency in place, because jspsych 7 tries to access the
browser-only window.  Instead of running this step, I think we can skip
right to the test phase, and see everything running via jest.
  • Loading branch information
benjamin-heasly committed Jul 6, 2022
1 parent c3c8544 commit 8e05bf2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,5 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Build Assets
run: yarn build

- name: Test
run: yarn test
3 changes: 0 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Build Assets
run: yarn build

- name: Test
run: yarn test

Expand Down

0 comments on commit 8e05bf2

Please sign in to comment.