Skip to content

Bump @babel/core from 7.24.5 to 7.24.9 #166

Bump @babel/core from 7.24.5 to 7.24.9

Bump @babel/core from 7.24.5 to 7.24.9 #166

Workflow file for this run

name: Build and Test
on:
push:
paths-ignore:
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
jobs:
build_and_test:
name: Build and run tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test
- name: Create test coverage report
run: ./node_modules/c8/bin/c8.js report --reporter=lcovonly
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
flag-name: run ${{ join(matrix.*, ' - ') }}