ready for v5.3.0 with more bugfixes #10
This file contains 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: Test Runner | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
prettier-lint-and-build: | |
name: Run Prettier, Linter and Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Node.js via nvm | |
shell: bash --login {0} | |
run: | | |
nvm install --no-progress | |
echo "$(dirname $(nvm which node))" >> $GITHUB_PATH | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Run prettier | |
run: npm run prettier | |
- name: Run linter | |
run: npm run lint | |
- name: Build | |
run: npm run build |