Skip to content

chore(deps): update dependency @types/node to v20.17.6 #1423

chore(deps): update dependency @types/node to v20.17.6

chore(deps): update dependency @types/node to v20.17.6 #1423

Workflow file for this run

# 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:
init:
name: init
runs-on: ubuntu-24.04
outputs:
yarn-cache-dir: ${{ steps.yarn-cache-dir-path.outputs.dir }}
checksum: ${{ steps.checksum.outputs.checksum }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Get yarn cache dir
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Get src checksum
id: checksum
run: echo "::set-output name=checksum::${{ hashFiles('yarn.lock') }}-${{ hashFiles('packages/*/src/**/*') }}-${{ hashFiles('packages/*/*.json') }}"
build:
name: build
needs: init
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Download artifact
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
nothrow: true
search_artifacts: true
search_depth: 10
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- uses: actions/cache@v4
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install deps
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: yarn
- name: Build
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: |
yarn build
tar -cvf artifact.tar packages/*/target package.json
- name: Save artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: actions/upload-artifact@v4
with:
name: artifact-${{ needs.init.outputs.checksum }}
retention-days: 30
path: artifact.tar
# https://github.com/actions/upload-artifact/issues/53
- name: Cache artifact
uses: actions/cache@v4
id: artifact
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
test_push:
needs: [build, init]
if: github.event_name == 'push'
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Restore artifact from cache (if exists)
uses: actions/cache@v4
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- name: Download artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Unpack artifact
run: tar -xvf artifact.tar
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install deps
run: yarn
- name: Test
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: yarn test
- name: Cache coverage
if: github.ref == 'refs/heads/master'
id: cache-coverage
uses: actions/cache@v4
with:
path: |
coverage
package.json
key: coverage-${{ needs.init.outputs.checksum }}
test_pr:
if: github.event_name == 'pull_request'
needs: [build, init]
strategy:
matrix:
os: [ ubuntu-22.04 ]
node-version: [ 20 ]
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Restore artifact from cache (if exists)
uses: actions/cache@v4
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- name: Download artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Unpack artifact
run: tar -xvf artifact.tar
- name: Install deps
run: yarn
- name: Full test
if: matrix.node-version == '20' && matrix.os == 'ubuntu-22.04'
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: yarn test
release:
name: Release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [test_push, init]
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
ref: master
- name: Restore artifact from cache (if exists)
uses: actions/cache@v4
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- name: Download artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Restore coverage
uses: actions/cache@v4
with:
path: |
coverage
package.json
key: coverage-${{ needs.init.outputs.checksum }}
- name: Unpack artifact
run: tar -xvf artifact.tar
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Codeclimate
uses: paambaati/codeclimate-action@v9.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
${{github.workspace}}/coverage/*.lcov:lcov
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_USER: 'qiwibot'
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_EMAIL: 'opensource@qiwi.com'
GIT_COMMITTER_EMAIL: 'opensource@qiwi.com'
GIT_AUTHOR_NAME: '@qiwibot'
GIT_COMMITTER_NAME: '@qiwibot'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
run: npm_config_yes=true npx zx-bulk-release