Skip to content

Merge pull request #180 from juergenzimmermann/issue-177 #82

Merge pull request #180 from juergenzimmermann/issue-177

Merge pull request #180 from juergenzimmermann/issue-177 #82

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- run: pnpm install
- run: pnpm run --if-present lint
- run: pnpm run --if-present build