Skip to content

Bump @types/node from 20.14.6 to 20.14.7 (#424) #1001

Bump @types/node from 20.14.6 to 20.14.7 (#424)

Bump @types/node from 20.14.6 to 20.14.7 (#424) #1001

Workflow file for this run

# Continuous integration workflow
name: CI
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
run:
name: CI
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system:
- ubuntu-24.04
#- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
if: startsWith(matrix.operating-system, 'ubuntu')
- name: npm test
run: npm test
- name: Setup Spice - Linux
if: startsWith(matrix.operating-system, 'ubuntu')
run: npm run start
- name: Setup Spice - Windows
if: startsWith(matrix.operating-system, 'ubuntu')
run: npm run start:win
- name: Compile test file
working-directory: media
run: spice run ./test-file.spice
- name: audit packages
run: npm audit --audit-level=high
if: matrix.operating-system == 'ubuntu-latest'