Bump @actions/core from 1.10.1 to 1.11.0 #1083
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |