Bump eslint-plugin-jest from 27.9.0 to 28.6.0 #185
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: "build-test" | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
if: contains(github.event.head_commit.message, '[skip ci]') == false | |
steps: | |
- name: setup node project | |
uses: actions/checkout@v4 | |
- name: install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: pnpm/action-setup@v3 | |
name: install pnpm | |
with: | |
version: 8 | |
run_install: false | |
- run: | | |
pnpm install | |
pnpm build | |
- name: run test | |
run: | | |
pnpm test |