Skip to content

build(deps): bump @babel/traverse from 7.14.8 to 7.23.2 (#25) #89

build(deps): bump @babel/traverse from 7.14.8 to 7.23.2 (#25)

build(deps): bump @babel/traverse from 7.14.8 to 7.23.2 (#25) #89

Workflow file for this run

name: Lint/Test/Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '14']
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Yarn Install
run: yarn install --network-concurrency 1
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn prod
- name: ES Check
run: yarn es-check