build(deps-dev): bump @semantic-release/github from 9.0.3 to 9.0.4 #1909
Workflow file for this run
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: "PR checks" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check_pr: | |
name: "PR checks" | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: install dependencies | |
run: npm ci | |
- name: check lock file for untrusted packages | |
run: npm_config_yes=true npx lockfile-lint --path package-lock.json --allowed-hosts npm --validate-https | |
- name: build typescript | |
run: npm run build -- --noEmit | |
- name: check for unformatted sources | |
run: | | |
npm run format:check \ | |
|| (echo "##[error] found unformatted files. please 'npm run format'" \ | |
"and check in all changes" \ | |
&& exit 1) | |
- name: check for uncommitted changes | |
# Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. | |
run: | | |
git diff --exit-code --stat -- . ':!node_modules' \ | |
|| (echo "##[error] found changed files after build. please 'npm run build'" \ | |
"and check in all changes" \ | |
&& exit 1) | |
tests: | |
name: "Tests (${{ matrix.os.os-label }})" | |
strategy: | |
matrix: | |
os: | |
- { index: 1, os-name: 'ubuntu-latest', os-label: 'Linux' } | |
- { index: 2, os-name: 'macos-latest', os-label: 'macOS' } | |
- { index: 3, os-name: 'windows-latest', os-label: 'Windows' } | |
runs-on: ${{ matrix.os.os-name }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os.os-name }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: install dependencies | |
run: npm ci | |
- name: run tests and instrument coverage | |
run: npm run coverage | |
- name: publish code coverage to code-climate (duh) | |
if: ${{ github.event_name == 'push' && matrix.os.index == 1 }} # Push coverage only once inside the matrix. | |
uses: paambaati/codeclimate-action@v3.2.0 | |
env: | |
CC_TEST_REPORTER_ID: 3470adaf12ff7cecdfe5a968ae0e95d098b6ee58c340114e1e90d440ee9e66ab | |
with: | |
debug: true |