This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
chore(deps): update nuxt core #1238
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: ci | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: 📦 Install dependencies | |
run: pnpm install | |
- name: 🔠 Lint project | |
run: pnpm lint | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18, 20 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- name: 📦 Install dependencies | |
run: pnpm install | |
- name: 🛠 Build project | |
run: pnpm build | |
- name: 🧪 Playground Test with Happy-DOM | |
run: pnpm -C playground run test:happy-dom --coverage | |
- name: 🧪 Playground Test with JSDOM | |
run: pnpm -C playground run test:jsdom --coverage | |
- name: 🧪 Playground Test on Dev | |
run: pnpm -C playground run test:dev | |
- name: 💪 Build project | |
run: pnpm -C playground run test:types | |
- name: 🟩 Coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: playground/coverage/nuxt/cover.xml,playground/coverage/unit/cover.xml |