Skip to content

Bump @babel/traverse from 7.20.13 to 7.23.2 #13

Bump @babel/traverse from 7.20.13 to 7.23.2

Bump @babel/traverse from 7.20.13 to 7.23.2 #13

Workflow file for this run

name: Pull Request Test
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Check eslint
run: npm run lint
- name: Run tests and generate coverage report
run: npm test -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}