Skip to content

Merge pull request #688 from elm-tooling/dependabot/github_actions/ac… #1127

Merge pull request #688 from elm-tooling/dependabot/github_actions/ac…

Merge pull request #688 from elm-tooling/dependabot/github_actions/ac… #1127

Workflow file for this run

name: Compile
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [16, 18]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci and compile
run: |
npm ci
npm run compile
cd client
npm run lint
npm test
env:
CI: true