Update babel monorepo (minor) #8589
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows run workflow from Actions tab | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install with Yarn | |
run: yarn && yarn setup | |
- name: Compile with TypeScript | |
run: yarn tsc | |
- name: Lint with ESLint | |
run: yarn lint | |
- name: Test with Jest | |
run: yarn test |