Skip to content

Bump @babel/traverse from 7.12.12 to 7.23.2 #311

Bump @babel/traverse from 7.12.12 to 7.23.2

Bump @babel/traverse from 7.12.12 to 7.23.2 #311

Workflow file for this run

name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn --ignore-engines --frozen-lockfile
- run: git diff --quiet --exit-code
- name: Lint
run: yarn lint
- name: Check format
run: yarn format-check
- name: Build
run: yarn build
- name: Test
run: yarn test
env:
CI: true
- name: Codecov
uses: codecov/[email protected]
with:
file: ./coverage/lcov.info
flags: unittests