Skip to content

Chore(deps): bump vite from 5.4.11 to 5.4.14 #17

Chore(deps): bump vite from 5.4.11 to 5.4.14

Chore(deps): bump vite from 5.4.11 to 5.4.14 #17

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
node: [18.x, 20.x, 22.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run test
- run: npm run lint
- run: npm run prettier:check
if: matrix.os != 'windows-latest'
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run ${{ join(matrix.*, ' - ') }}
parallel: true
finish:
runs-on: ubuntu-latest
needs: test
steps:
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true