chore(deps): update dependency @types/node to v22.8.7 #2403
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
# This is a Github Workflow that runs tests on any push or pull request. | |
# If the tests pass and this is a push to the master branch it also runs Semantic Release. | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
push: | |
name: Push ${{ github.ref }} | |
if: github.event_name == 'push' | |
runs-on: ubuntu-24.04 | |
permissions: | |
checks: read | |
statuses: write | |
contents: write | |
packages: write | |
id-token: write | |
steps: | |
- name: Depth | |
run: echo "FETCH_DEPTH=$(echo '${{ toJSON(github.event.commits) }}' | jq 'length | if . < 20 then . + 1 else 0 end')" >> $GITHUB_ENV | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: ${{ env.FETCH_DEPTH }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install deps | |
run: | | |
sudo apt-get install moreutils | |
yarn --silent --immutable | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test | |
- name: Codeclimate | |
if: github.ref == 'refs/heads/master' | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageLocations: | | |
${{github.workspace}}/coverage/lcov.info:lcov | |
- name: Semantic Release | |
if: github.ref == 'refs/heads/master' | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_PROVENANCE: true | |
GH_USER: ${{ secrets.GH_USER }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | |
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | |
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | |
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | |
run: npm_config_yes=true npx zx-bulk-release --no-build | |
pr: | |
if: github.event_name == 'pull_request' | |
name: PR (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04 ] | |
node-version: [ 16, 20 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install deps | |
run: | | |
sudo apt-get install moreutils | |
yarn --silent --immutable | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test |