Skip to content

chore(deps): bump vite from 5.3.3 to 5.4.6 #246

chore(deps): bump vite from 5.3.3 to 5.4.6

chore(deps): bump vite from 5.3.3 to 5.4.6 #246

Workflow file for this run

name: Node CI
on:
push:
branches: [dev]
pull_request:
branches: [dev]
jobs:
build:
strategy:
matrix:
node:
- version: 18
napi: 8
- version: 20
napi: 8
- version: 22
napi: 8
runs-on: ubuntu-latest
container:
image: node:${{ matrix.node.version }}-bookworm
env:
CI: true
steps:
- uses: actions/checkout@v1
- name: Prepare
run: |
apt-get update
apt-get install -y cmake libflac-dev flac
- name: Install
run: npm ci
- name: Build
run: |
npx cmake-js configure --CDnapi_build_version=${{ matrix.node.napi }}
npx cmake-js build
- name: Lint
run: npm run lint
- name: Test
run: npm test