Use $PLAYWRIGHT_VERSION #66
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
# This file configure a GitHub workflow responsible to perform | ||
# various checks related to the codebase. | ||
# | ||
# For that reason it's runned on every pull request and push to main. | ||
# | ||
# It does the following: | ||
# - Check linting passes (no eslint error on files) | ||
# - Run tests and ensure none is failing | ||
name: eslint_and_tests | ||
on: | ||
push: | ||
branches: | ||
- main | ||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#patterns-to-match-file-paths | ||
paths-ignore: | ||
- "docs/**" | ||
- "packages/independent/workflow/**" | ||
- "www/**" | ||
- "**/readme.md" | ||
pull_request: | ||
branches: | ||
- "**" | ||
paths-ignore: | ||
- "docs/**" | ||
- "packages/independent/workflow/**" | ||
- "www/**" | ||
- "**/readme.md" | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
# https://github.com/actions/runner-images | ||
os: | ||
- ubuntu-22.04 | ||
- macos-12 # until https://github.com/microsoft/playwright/issues/30585 | ||
- windows-2022 | ||
node: [22.3.0] | ||
runs-on: ${{ matrix.os }} | ||
name: test on ${{ matrix.os }} and node ${{ matrix.node }} | ||
env: | ||
CI: true | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: set linux fs limits | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo sysctl fs.inotify.max_user_watches=524288 | ||
sudo sysctl -p | ||
sudo sh -c "ulimit -n 65536 && exec su $LOGNAME" | ||
ulimit -n | ||
# sudo ulimit should prevent npm link failure | ||
- name: Install node modules | ||
run: npm install | ||
# Figures out the version of playwright that's installed. | ||
# 1. Because we don't know what version yarn will resolve it to, we have | ||
# to use `yarn why` to get the actually installed version. | ||
# 2. Because we're in a workspace, we need to make sure we get the version | ||
# for the root and not any children, hence the `grep`. If not using | ||
# workspaces, this can be skipped. | ||
# 3. jq comes pre-installed in the Ubuntu runner, so we use that to get | ||
# the correct version string. | ||
# 4. Finally, we use sed to extract just the version number (eg; '1.22.0') | ||
# The result is stored in $PLAYWRIGHT_VERSION | ||
- name: Get installed Playwright version | ||
id: playwright-version | ||
# https://stackoverflow.com/a/33426237/24573072 | ||
run: echo "PLAYWRIGHT_VERSION=version::$(npm ll -p --depth=0 playwright | grep -o '@.*')" >> $GITHUB_OUTPUT | ||
- name: Print playwright version | ||
run: echo "${PLAYWRIGHT_VERSION}" | ||
# Attempt to restore the correct Playwright browser binaries based on the | ||
# currently installed version of Playwright (The browser binary versions | ||
# may change with Playwright versions). | ||
# Note: Playwright's cache directory is hard coded because that's what it | ||
# says to do in the docs. There doesn't appear to be a command that prints | ||
# it out for us. | ||
- name: Attempt to restore playwright from cache | ||
uses: actions/cache@v3 | ||
id: playwright-cache | ||
with: | ||
path: "~/.cache/ms-playwright" | ||
key: "${{ runner.os }}-playwright-${{ PLAYWRIGHT_VERSION }}" | ||
Check failure on line 90 in .github/workflows/ci_eslint_and_test.yml GitHub Actions / eslint_and_testsInvalid workflow file
|
||
# As a fallback, if the Playwright version has changed, try use the | ||
# most recently cached version. There's a good chance that at least one | ||
# of the browser binary versions haven't been updated, so Playwright can | ||
# skip installing that in the next step. | ||
# Note: When falling back to an old cache, `cache-hit` (used below) | ||
# will be `false`. This allows us to restore the potentially out of | ||
# date cache, but still let Playwright decide if it needs to download | ||
# new binaries or not. | ||
restore-keys: | | ||
${{ runner.os }}-playwright- | ||
# If the Playwright browser binaries weren't able to be restored, we tell | ||
# paywright to install everything for us. | ||
- name: Install Playwright with dependencies | ||
if: steps.playwright-cache.outputs.cache-hit != 'true' | ||
run: npx playwright install --with-deps | ||
# https://github.com/microsoft/playwright/issues/7249#issuecomment-1171962742 | ||
- name: Install Playwright's dependencies | ||
if: steps.playwright-cache.outputs.cache-hit == 'true' | ||
run: npx playwright install-deps | ||
- name: Install certificate # needed for @jsenv/service-worker tests | ||
if: runner.os == 'Linux' # https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context | ||
run: npm run https:setup | ||
- name: Fix lightningcss windows | ||
if: runner.os == 'Windows' | ||
run: npm install lightningcss-win32-x64-msvc | ||
- name: Run ESLint | ||
env: | ||
NODE_OPTIONS: "--max_old_space_size=4096" | ||
run: npm run eslint | ||
- name: Run core tests | ||
run: npm test | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |