Skip to content

chore: update actions/add-to-project digest to 9bfe908 #88

chore: update actions/add-to-project digest to 9bfe908

chore: update actions/add-to-project digest to 9bfe908 #88

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
Build:
strategy:
matrix:
os: [ macos-latest, ubuntu-20.04, windows-latest ]
node-version: [ 20 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Generate parser from grammar
run: npm run generate:parser
- name: Bundle dist
run: npm run bundle