Skip to content

chore(deps): update all non-major dependencies #6601

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #6601

name: E2E Tests
on:
pull_request:
paths:
- 'e2e-tests/**'
- '.shellcheckrc'
push:
branches:
- 'main'
- 'release-[0-9]+.[0-9]+'
paths:
- 'e2e-tests/**'
- '.shellcheckrc'
jobs:
lint:
name: Oxlint, Oxfmt, and ShellCheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
- name: Set up Node.js
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
with:
node-version-file: ".nvmrc"
- name: Install dependencies root
working-directory: .
run: yarn install
- name: Install dependencies e2e-tests
working-directory: ./e2e-tests
run: yarn install --mode=skip-build
- name: Run Oxlint
working-directory: ./e2e-tests
run: yarn lint
- name: Verify Playwright test collection
working-directory: ./e2e-tests
run: yarn test:list
- name: Run ShellCheck
working-directory: ./e2e-tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn shellcheck
- name: Run Oxfmt check
working-directory: ./e2e-tests
run: yarn fmt:check