⬆️ Bump @babel/traverse from 7.23.0 to 7.23.2 #1889
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies 📦 | |
run: yarn --frozen-lockfile --ignore-scripts | |
- name: Lint 🎨 | |
run: yarn turbo lint | |
- name: Flow types 🏷 | |
run: yarn turbo flow | |
- name: Tests ✅ | |
run: yarn turbo test | |
- name: Upload Coverage 📈 | |
run: yarn turbo coverage |