Bump vitest from 2.2.0-beta.1 to 2.2.0-beta.2 #1679
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: 'Test' | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: | |
- 'opened' | |
- 'synchronize' | |
- 'reopened' | |
concurrency: | |
group: 'test-${{ github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: 'Test' | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [18, 20, 22] | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- name: 'Setup Node.js' | |
uses: 'actions/[email protected]' | |
with: | |
node-version: '${{ matrix.version }}' | |
cache: 'npm' | |
- name: 'Install dependencies' | |
run: 'npm ci' | |
- name: 'Test' | |
run: 'npm run test' | |
type-test: | |
name: 'Type test' | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [18, 20, 22] | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- name: 'Setup Node.js' | |
uses: 'actions/[email protected]' | |
with: | |
node-version: '${{ matrix.version }}' | |
cache: 'npm' | |
- name: 'Install dependencies' | |
run: 'npm ci' | |
- name: 'Type test' | |
run: 'npm run type-test' | |
lint: | |
name: 'Lint' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- name: 'Setup Node.js' | |
uses: 'actions/[email protected]' | |
with: | |
node-version: 22 | |
cache: 'npm' | |
- name: 'Install dependencies' | |
run: 'npm ci' | |
- name: 'Lint with ESLint' | |
run: 'npm run lint:eslint' | |
- name: 'Lint with Markdownlint' | |
run: 'npm run lint:markdownlint' | |
- name: 'Lint with Prettier' | |
run: 'npm run lint:prettier' | |
- name: 'Lint with yamllint' | |
uses: 'ibiqlik/action-yamllint@v3' | |
build: | |
name: 'Build' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- name: 'Setup Node.js' | |
uses: 'actions/[email protected]' | |
with: | |
node-version: 22 | |
cache: 'npm' | |
- name: 'Install dependencies' | |
run: 'npm ci' | |
- name: 'Build' | |
run: 'npm run build' |