Skip to content

chore: Bump @babel/traverse from 7.22.20 to 7.23.2 #352

chore: Bump @babel/traverse from 7.22.20 to 7.23.2

chore: Bump @babel/traverse from 7.22.20 to 7.23.2 #352

Workflow file for this run

name: build-and-test
on:
pull_request:
types: [opened, synchronize]
branches:
- main
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '14', '16', '18', '20']
name: Node ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: npm install
run: npm install
- name: Lint
run: npm run lint
- name: Build and test
run: npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-node-${{ matrix.node }}
parallel: true
finish:
needs: build-and-test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true