Bump @testing-library/react from 16.0.1 to 16.1.0 in /web #217
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] Continuous Integration" | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: v18.x | |
- name: Install Dependencies | |
working-directory: ./web | |
run: npm install | |
- name: Lint | |
working-directory: ./web | |
run: npm run lint | |
- name: Lint Fix | |
working-directory: ./web | |
run: npm run lint:fix | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: v18.x | |
- name: Install Dependencies | |
working-directory: ./web | |
run: npm install | |
- name: Test - Jest | |
working-directory: ./web | |
run: npm test |