Skip to content

chore(deps): Bump @babel/traverse from 7.22.19 to 7.23.2 #533

chore(deps): Bump @babel/traverse from 7.22.19 to 7.23.2

chore(deps): Bump @babel/traverse from 7.22.19 to 7.23.2 #533

Workflow file for this run

# This workflow will do a clean installation of node dependencies, build the source code and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Run tests
on:
push:
branches: ["main"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Using Node.js from .nvmrc
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
# caching with actions/setup-node isn't supported with yarn 3
# so we use this workaround https://github.com/actions/setup-node/issues/488
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
shell: bash
- name: Restore yarn cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-cache-folder-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }}
restore-keys: |
yarn-cache-folder-
- run: yarn install --immutable
- run: yarn build
- run: yarn test