Skip to content

Bump eslint-plugin-playwright from 1.8.3 to 2.2.0 #302

Bump eslint-plugin-playwright from 1.8.3 to 2.2.0

Bump eslint-plugin-playwright from 1.8.3 to 2.2.0 #302

Workflow file for this run

name: CI
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
build:
name: Build & Test
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version: 20.x
- name: Build
working-directory: ./packages/app/default
run: yarn --skip-integrity-check --no-lockfile --network-timeout 100000
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9
- name: Check for uncommitted changes in yarn.lock
run: |
if git diff --name-only | grep -q "^yarn.lock"; then
echo "::error::The yarn.lock file has uncommitted changes!"
exit 1
fi
#- name: Create eslint json report
# run: |
# yarn lint:ci
#- name: Create summary
# run: |
# npm_config_yes=true npx github:10up/eslint-json-to-md#82ff16b --path ./eslint_report.json --output ./eslint_report.md
# cat eslint_report.md >> $GITHUB_STEP_SUMMARY
- name: Build all Modules
run: lerna run build
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Build browser
working-directory: ./packages/app/default
run: yarn run build-only
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Cache Build Output
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
with:
path: ./packages/app/default/dist
key: build-cache-${{ github.sha }}