Skip to content

Commit

Permalink
Small improvement to github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thostetler committed Sep 10, 2024
1 parent 40ea4fa commit f6d6b08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18 ]
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
Expand All @@ -25,7 +25,7 @@ jobs:

- name: Install dependencies
if: steps.pnpm-cache.outputs.cache-hit != 'true'
run: pnpm install
run: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 SENTRYCLI_SKIP_DOWNLOAD=1 pnpm install

- name: Lint
run: pnpm lint
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18 ]
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
Expand All @@ -55,7 +55,7 @@ jobs:

- name: Install dependencies
if: steps.pnpm-cache.outputs.cache-hit != 'true'
run: pnpm install
run: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 SENTRYCLI_SKIP_DOWNLOAD=1 pnpm install

- name: Test
run: pnpm test:coverage
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
COOKIE_SECRET: ${{ vars.COOKIE_SECRET }}
strategy:
matrix:
node-version: [ 18 ]
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"storybook": "storybook dev -p 8001 --no-open --disable-telemetry",
"build-storybook": "storybook build",
"build-bibstem-index": "node ./scripts/gen-bibstem-index",
"lint": "tsc --project ./tsconfig.json && eslint .",
"lint": "tsc -v && tsc --project ./tsconfig.json && eslint .",
"prepare": "husky install"
},
"dependencies": {
Expand Down

0 comments on commit f6d6b08

Please sign in to comment.