Skip to content

Bump @babel/traverse from 7.9.6 to 7.23.2 #1081

Bump @babel/traverse from 7.9.6 to 7.23.2

Bump @babel/traverse from 7.9.6 to 7.23.2 #1081

Workflow file for this run

name: Validate
on:
pull_request:
branches:
- develop
- release-candidate
- master
- gps-release**
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache node_modules/
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-yarn-cache-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-yarn-cache-
- run: yarn --frozen-lockfile
- run: yarn validate
if: ${{ always() }}