Skip to content

build(deps): bump @babel/traverse from 7.17.3 to 7.23.7 #36

build(deps): bump @babel/traverse from 7.17.3 to 7.23.7

build(deps): bump @babel/traverse from 7.17.3 to 7.23.7 #36

Workflow file for this run

name: Common
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["18.12.x", "20.x"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- 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: Build
run: yarn build
build_success:
runs-on: ubuntu-latest
name: Build Success
needs: build
steps:
- name: Check build matrix status
if: ${{ needs.build.result != 'success' }}
run: exit 1