Skip to content

Bump @babel/traverse from 7.22.8 to 7.24.5 (#6) #42

Bump @babel/traverse from 7.22.8 to 7.24.5 (#6)

Bump @babel/traverse from 7.22.8 to 7.24.5 (#6) #42

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Print Docker status
run: systemctl status docker
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Test
run: yarn test --ci --coverage --maxWorkers=2
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
- name: Build
run: yarn build