Skip to content

Merge pull request #97 from venables/dependabot/npm_and_yarn/vite-5.4.14 #49

Merge pull request #97 from venables/dependabot/npm_and_yarn/vite-5.4.14

Merge pull request #97 from venables/dependabot/npm_and_yarn/vite-5.4.14 #49

Workflow file for this run

name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
name: "Lint & Test (Node ${{ matrix.node }})"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- run: npm install
- run: npm run check