Skip to content

chore (npm): bump @nuxt/schema from 3.12.3 to 3.12.4 #268

chore (npm): bump @nuxt/schema from 3.12.3 to 3.12.4

chore (npm): bump @nuxt/schema from 3.12.3 to 3.12.4 #268

Workflow file for this run

name: Tests
on:
- workflow_dispatch
- push
- pull_request
jobs:
ci:
if: ${{ !contains(github.event.head_commit.message, 'skip ci') }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18, 20]
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: cache node_modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package.lock')) }}
- name: Install dependencies
run: npm ci
- name: Install playwright browsers
run: npx playwright install --with-deps
- name: Build playground
run: npm run dev:prepare
- name: Lint
run: npm run lint
- name: Check types
run: npm run types
- name: Run tests
run: npm run test
- name: Automatically merge dependabot updates
if: github.event_name == 'pull_request'
uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE }}