ci: refactored actions to be more reusable #4576
Workflow file for this run
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
name: Lint & E2E | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [main] | |
jobs: | |
lint_build: | |
name: Lint & Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
node-version: 22.12.0 | |
pnpm-version: 9.15.1 | |
- name: Lint | |
run: pnpm lint | |
e2e: | |
name: E2E tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
node-version: 22.12.0 | |
pnpm-version: 9.15.1 | |
- name: Build library | |
run: pnpm lerna:build | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
install: false | |
record: true | |
start: pnpm demo:http-server | |
wait-on: 'http://127.0.0.1:8080/lighthouse-viewer/' | |
command: pnpm cypress:run | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |