Skip to content

Commit

Permalink
backwards compat
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish committed May 12, 2024
1 parent 8769096 commit b60b44e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install
run: yarn install
- name: Build
run: yarn start build
run: yarn build
- name: Pack
run: yarn pack
- name: Archive Artifacts
Expand All @@ -49,7 +49,7 @@ jobs:
node-version-file: 'package.json'
- run: yarn install
- name: Run Linter
run: yarn start lint
run: yarn lint

test:
name: Unit Tests
Expand All @@ -70,7 +70,7 @@ jobs:
- run: yarn install
- name: Run Unit Tests
timeout-minutes: 10
run: yarn start test
run: yarn test

e2e:
name: E2E Tests
Expand All @@ -93,7 +93,7 @@ jobs:
- run: yarn install
- name: Run E2E Tests
timeout-minutes: 30
run: yarn start e2e
run: yarn e2e

required_jobs_passed:
name: All required jobs passed or were skipped
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@
"access": "public"
},
"scripts": {
"start": "node scripts/start.mjs"
"start": "node scripts/start.mjs",
"build": "node scripts/start.mjs build",
"test": "node scripts/start.mjs test",
"lint": "node scripts/start.mjs lint",
"e2e": "node scripts/start.mjs e2e"
},
"dependencies": {
"@sentry/browser": "8.0.0-beta.5",
Expand Down

0 comments on commit b60b44e

Please sign in to comment.