Skip to content

Remove Windows from CI #151

Remove Windows from CI

Remove Windows from CI #151

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: macos-14

Check failure on line 11 in .github/workflows/node.yaml

View workflow run for this annotation

GitHub Actions / Node.js CI

Invalid workflow file

The workflow is not valid. .github/workflows/node.yaml (Line: 11, Col: 13): Unexpected value 'macos-14'
node-version: ['18.x']
test-command:
- npm run test-style
- npm run test-types
- npm run test-unit
- npm run test-macos-key-press
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: ${{ matrix.test-command }}