Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

chore(deps): bump @babel/traverse from 7.11.5 to 7.24.6 #158

chore(deps): bump @babel/traverse from 7.11.5 to 7.24.6

chore(deps): bump @babel/traverse from 7.11.5 to 7.24.6 #158

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
node: [16, 18]
name: Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test