chore(deps): update dependency @types/node to v22.15.20 #1807
Workflow file for this run
This file contains hidden or 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: Verify build | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/merge | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: build | |
run: pnpm build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/merge | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: lint | |
run: pnpm lint | |
test-chrome: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/merge | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: Install Playwright Browsers | |
run: npx playwright install chromium | |
- name: test | |
run: pnpm test --browsers=chromium | |
# ToDo: investigate coverage reporting | |
# - name: Upload coverage reports to Codecov | |
# uses: codecov/codecov-action@v5 | |
# env: | |
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
test-firefox: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/merge | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: Install Playwright Browsers | |
run: npx playwright install firefox | |
- name: test | |
run: pnpm test --browsers=firefox | |
test-safari: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/merge | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: Install Playwright Browsers | |
run: npx playwright install webkit --with-deps | |
- name: test | |
run: pnpm test --browsers=webkit | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/merge | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: prettier | |
run: npx prettier . --check |