build(deps-dev): bump eslint-plugin-jest from 28.8.3 to 28.9.0 #975
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: typescript-gate | |
on: | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
paths: | |
- src/** | |
- tests/** | |
- '*.json' | |
- action.yml | |
- .github/workflows/typescript-gate.yml | |
push: | |
branches: | |
- main | |
paths: | |
- src/** | |
- tests/** | |
- '*.json' | |
- action.yml | |
- .github/workflows/typescript-gate.yml | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.5.2 | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 20 | |
cache: yarn | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- run: yarn | |
- run: yarn build | |
- run: yarn test | |
env: | |
GITHUB_TOKEN: ${{ github.token }} # GH cli call needs the token | |
- run: yarn format-check | |
- run: yarn lint | |
- run: yarn package |