Bump @babel/traverse from 7.19.6 to 7.23.2 #247
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: Test | |
on: [push] | |
jobs: | |
jest: | |
name: Jest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup environment with pnpm | |
uses: danoc/pnpm-setup-composite-action@v1 | |
- name: Run Jest | |
run: pnpm run test:jest | |
eslint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup environment with pnpm | |
uses: danoc/pnpm-setup-composite-action@v1 | |
- name: Run ESLint | |
run: yarn run test:eslint | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup environment with pnpm | |
uses: danoc/pnpm-setup-composite-action@v1 | |
- name: Run Prettier | |
run: yarn run test:prettier |