This repository was archived by the owner on Jan 8, 2025. It is now read-only.
Bump eslint-plugin-jest from 27.2.1 to 28.10.0 #568
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [main] | |
tags: ["v*"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
push: | |
name: push | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
registry-url: https://registry.npmjs.org | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: yarn lint:ci | |
- run: yarn test | |
- name: Publish to NPM | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
run: yarn publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
bench: | |
name: bench | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
registry-url: https://registry.npmjs.org | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn bench:benny |