Skip to content

File Selectors, while, @block, FFT #73

File Selectors, while, @block, FFT

File Selectors, while, @block, FFT #73

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
compiler:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: |
compiler/package-lock.json
- run: npm ci
working-directory: ./compiler
- run: npm run dist
working-directory: ./compiler
- run: npm run check
working-directory: ./compiler
- run: npm test
working-directory: ./compiler
desktop:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: |
compiler/package-lock.json
desktop/package-lock.json
- run: npm ci
working-directory: ./compiler
- run: npm run dist
working-directory: ./compiler
- run: npm ci
working-directory: ./desktop
- run: npm run check
working-directory: ./desktop
- run: npm test
working-directory: ./desktop
gui:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: |
compiler/package-lock.json
gui/package-lock.json
- run: npm ci
working-directory: ./compiler
- run: npm run dist
working-directory: ./compiler
- run: npm ci
working-directory: ./gui
- run: npm run check
working-directory: ./gui
- run: npm test
working-directory: ./gui