chore(deps): update dependency ts-jest to v29.2.5 #837
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: Pull Request | |
on: [pull_request] | |
jobs: | |
pull_request: | |
runs-on: ubuntu-latest | |
env: | |
CI_JOB_NUMBER: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install deps (with cache) | |
uses: bahmutov/npm-install@v1 | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test:ci | |
- name: Build | |
run: npm run build | |
- name: size-limit-action | |
uses: andresz1/[email protected] | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} |