Skip to content

[Snyk] Upgrade @xterm/xterm from 5.4.0 to 5.5.0 #5

[Snyk] Upgrade @xterm/xterm from 5.4.0 to 5.5.0

[Snyk] Upgrade @xterm/xterm from 5.4.0 to 5.5.0 #5

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [20.x]
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
if: matrix.os == 'ubuntu-latest'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: install dependencies (ubuntu only)
if: matrix.os == 'ubuntu-latest

Check failure on line 34 in .github/workflows/node.yml

View workflow run for this annotation

GitHub Actions / Node.js CI

Invalid workflow file

The workflow is not valid. .github/workflows/node.yml (Line: 34, Col: 13): Unexpected symbol: ''ubuntu-latest'. Located at position 14 within expression: matrix.os == 'ubuntu-latest
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
run: npm ci
- run: npm run lint:check
- run: npm audit --audit-level=critical
- run: npm run test:ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- run: npm run build
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
includeRelease: false