Skip to content

Bump @babel/traverse from 7.15.4 to 7.23.2 #65

Bump @babel/traverse from 7.15.4 to 7.23.2

Bump @babel/traverse from 7.15.4 to 7.23.2 #65

Workflow file for this run

name: Basic CI
on:
pull_request:
branches:
- 'main'
push:
branches:
- '*'
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
jobs:
build:
strategy:
matrix:
node-version: [ 14.x, 16.x ]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- 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: Build
run: npm run build
- name: Tests
run: npm run test
code-coverage:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint-ci
- name: Generate code coverage report
run: npm run test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}