Skip to content

Merge branch 'main' of github.com:lars-berger/GlazeWM-js #8

Merge branch 'main' of github.com:lars-berger/GlazeWM-js

Merge branch 'main' of github.com:lars-berger/GlazeWM-js #8

Workflow file for this run

name: CI
on: push
env:
NODE_VERSION: ${{ vars.NODE_VERSION }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci
# Check whether Prettier has errors.
- run: npm run check:prettier
# Check whether build is successful.
- run: npm run build