chore (npm): bump @nuxt/kit from 3.10.3 to 3.11.0 #19
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: 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 |