Bump @hyperjump/json-schema from 022ffad
to 09ef294
#483
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
name: Node.js CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
node-version: [20.x, 22.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm ci | |
- run: cd language-server && npm ci | |
- run: cd language-server && npm test | |
- run: cd language-server && npm run type-check | |
- run: cd language-server && npm run lint | |
- run: cd vscode && npm ci | |
- run: cd vscode && npm run type-check | |
- run: cd vscode && npm run lint | |
- run: cd vscode && npm run build |