Merge pull request #3909 from mhsdesign/feature/simplify-publish-work… #1846
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ '[0-9]+.[0-9]' ] | |
pull_request: | |
branches: [ '[0-9]+.[0-9]' ] | |
jobs: | |
codestyle: | |
runs-on: ubuntu-latest | |
name: 'Code style' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- name: Install | |
run: make install-and-verify | |
- name: Lint | |
run: make lint | |
unittests: | |
runs-on: ubuntu-latest | |
name: 'Unit tests' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- name: Install | |
run: make install-and-verify | |
- name: Build | |
run: make build-production | |
- name: Test | |
run: make test |