Bump eslint-plugin-jest from 27.2.1 to 27.8.0 #28
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: "CI" | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Show info | |
run: npm version | |
- name: Install deps | |
run: npm install | |
- name: Build, apply formatting, lint, package and run unit tests | |
run: npm run all | |
- name: Style check | |
run: npm run format-check | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Show info | |
run: npm version | |
- name: Setup BATS | |
uses: ./ | |
- name: BATS version | |
run: bats --version | |
- name: BATS test | |
run: bats __tests__/integration.bats |