Skip to content

Bump babel/traverse and jsonpath-plus #241

Bump babel/traverse and jsonpath-plus

Bump babel/traverse and jsonpath-plus #241

Workflow file for this run

name: "CI"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
clean-code-stage:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: "--max_old_space_size=4096"
steps:
- name: Checkout
uses: actions/checkout@v5
- uses: ./.github/composite_actions/initial_setup
- name: audit
timeout-minutes: 4
run: yarn npm audit
continue-on-error: true
- name: lint
timeout-minutes: 4
run: yarn lint
- name: format
timeout-minutes: 4
run: yarn format
clean-build-stage:
runs-on: ubuntu-latest
needs: clean-code-stage
env:
NODE_OPTIONS: "--max_old_space_size=4096"
steps:
- name: Checkout
uses: actions/checkout@v5
- uses: ./.github/composite_actions/initial_setup
- name: Build
run: yarn build
- name: Test
run: yarn test