Skip to content

Rebuild for speed and simplicity #756

Rebuild for speed and simplicity

Rebuild for speed and simplicity #756

Workflow file for this run

name: Compile source code
on:
workflow_dispatch:
pull_request:
branches: [main]
jobs:
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/[email protected]
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: Compile source code
run: |
npm ci
npm run compile