Skip to content

chore(deps-dev): bump defu from 6.1.4 to 6.1.6 #35

chore(deps-dev): bump defu from 6.1.4 to 6.1.6

chore(deps-dev): bump defu from 6.1.4 to 6.1.6 #35

Workflow file for this run

name: validate
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run build
e2e:
name: e2e (Node.js ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 22, 24]
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run e2e
env:
E2E_PRISMIC_EMAIL: ${{ secrets.E2E_PRISMIC_EMAIL }}
E2E_PRISMIC_PASSWORD: ${{ secrets.E2E_PRISMIC_PASSWORD }}
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report (Node.js ${{ matrix.node }})
path: playwright-report/
retention-days: 30
types:
name: "types (TypeScript ${{ matrix.typescript }})"
runs-on: ubuntu-latest
strategy:
matrix:
typescript: ["5.4", "5.6", "5.7", "5.8", "5.9"]
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm install --no-save typescript@${{ matrix.typescript }} && npx tsc --version
- run: npm run types