Skip to content

chore(deps-dev): bump eslint-plugin-vitest from 0.4.0 to 0.5.4 #67

chore(deps-dev): bump eslint-plugin-vitest from 0.4.0 to 0.5.4

chore(deps-dev): bump eslint-plugin-vitest from 0.4.0 to 0.5.4 #67

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
test:
name: Lint, Test, and Typecheck
timeout-minutes: 15
runs-on: windows-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Lint, Test, Typecheck
run: yarn ci