Skip to content

Bump @babel/traverse from 7.22.8 to 7.23.2 #425

Bump @babel/traverse from 7.22.8 to 7.23.2

Bump @babel/traverse from 7.22.8 to 7.23.2 #425

Workflow file for this run

name: Test PRs
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, test
run: |
yarn install --frozen-lockfile
yarn run lint
yarn run test:coverage -w 1
env:
CI: true
NODE_ENV: test
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_REGION: ${{ secrets.AWS_REGION }}
GITHUB_NPM_TOKEN: ${{ secrets.GH_NPM_TOKEN }}
- name: report code coverage
run: npx codecov@3
if: matrix.node-version == '14.x'
env:
CI: true
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_NPM_TOKEN: not-actually-used-but-necessary-here