Skip to content

chore(deps): bump actions/checkout from 6 to 7 (#254) #461

chore(deps): bump actions/checkout from 6 to 7 (#254)

chore(deps): bump actions/checkout from 6 to 7 (#254) #461

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: '24'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
env:
CI: true
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: '24'
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- run: npm test
timeout-minutes: 5