Skip to content

fix(ci): try once again to publish new version #1901

fix(ci): try once again to publish new version

fix(ci): try once again to publish new version #1901

Workflow file for this run

name: "PR checks"
on: [pull_request, push]
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' }
# NOTE: Windows is not supported because CodeClimate does not publish a Windows build of the reporter (yet).
runs-on: ${{ matrix.os.os-name }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
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