Skip to content

build(deps): bump axios from 1.4.0 to 1.6.0 #89

build(deps): bump axios from 1.4.0 to 1.6.0

build(deps): bump axios from 1.4.0 to 1.6.0 #89

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- develop
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: --max_old_space_size=4096
strategy:
matrix:
node-version: [18.x]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run typecheck
run: npm run typecheck
- name: Run tests
#run: npm test
run: npm run test:main