Bump @babel/traverse from 7.19.3 to 7.23.9 #140
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: Typescript + prettier checks | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: ['**/**'] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
validate: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
# Using node action to manage caching node_modules | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install | |
# Validates project | |
- name: Typescript + prettier checks | |
run: yarn validate |