Skip to content

chore(deps): bump @babel/traverse from 7.8.6 to 7.23.2 #45

chore(deps): bump @babel/traverse from 7.8.6 to 7.23.2

chore(deps): bump @babel/traverse from 7.8.6 to 7.23.2 #45

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-20.04
name: Lint
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
- run: yarn
- run: yarn lint-ts
build:
runs-on: ubuntu-20.04
needs: lint
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
- run: yarn
- run: yarn build
test:
runs-on: ubuntu-20.04
needs: Build
name: Test
services:
db:
image: mongo:5
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
- run: yarn
- run: yarn test