-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Puppeteer tests | ||
|
||
# We've experienced quite a lot of instability with the puppeteer setup, notably | ||
# the fact that it works locally but not in the Github action. Thus, we've removed | ||
# it from the main integrate workflow, which in turns means we do not have a nice | ||
# way to try and fix it. | ||
|
||
# This workflow only runs the puppeteer tests, and MUST NOT be required as a branch | ||
# protection. It will nonetheless let us monitor the status of it and make it easier | ||
# for us to fix the problems once we get to it. | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- "*" | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [18, 20] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- uses: actions/cache@v4 | ||
with: | ||
path: .yarn/cache | ||
key: yarn-${{ hashFiles('yarn.lock') }} | ||
- run: > | ||
yarn config set | ||
npmScopes.siteimprove.npmAuthToken | ||
${{ secrets.GITHUB_TOKEN }} | ||
- run: yarn install --immutable | ||
- run: yarn build | ||
- run: yarn workspace end-to-end-testing-puppeteer test |