Skip to content

Merge pull request #301 from ngarbezza/dependabot/npm_and_yarn/vue-3.… #717

Merge pull request #301 from ngarbezza/dependabot/npm_and_yarn/vue-3.…

Merge pull request #301 from ngarbezza/dependabot/npm_and_yarn/vue-3.… #717

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint and test
run: |
npm install
npm run lint
npm test --coverage
env:
CI: true