Skip to content

Merge pull request #44 from kieler/jep/folding #173

Merge pull request #44 from kieler/jep/folding

Merge pull request #44 from kieler/jep/folding #173

Workflow file for this run

# CI workflow used for code quality checks and to ensure that a PR can be built.
# Future tests might also be executed by this workflow.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: ci
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
name: Run eslint and test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
- run: yarn
- run: yarn lint
- run: yarn build
- run: yarn test