Skip to content

Bump @babel/preset-env from 7.19.1 to 7.22.20 #305

Bump @babel/preset-env from 7.19.1 to 7.22.20

Bump @babel/preset-env from 7.19.1 to 7.22.20 #305

Workflow file for this run

name: Node CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, build, and test
run: |
yarn install
yarn lint
yarn build
yarn test --coverage
env:
CI: true
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}