Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Feb 28, 2024
1 parent 55baf19 commit 6db166f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
always-auth: true
cache: 'npm'
- run: npm ci
- run: npm ci --workspaces
- name: Publish latest version
if: steps.release.outputs.tag == ''
run: npm publish --provenance
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm ci --workspaces
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: npm run test:types
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm ci --workspaces
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: npm run test:types
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm ci --workspaces
- run: npm run test:wpt:${{ matrix.browser }}
env:
HOME: /root
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
"wpt-runner": "^5.0.0"
},
"workspaces": [
".",
"test/rollup",
"test/webpack"
]
Expand Down

0 comments on commit 6db166f

Please sign in to comment.