Skip to content

fix: update packages & replace request dependency #157

fix: update packages & replace request dependency

fix: update packages & replace request dependency #157

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node: [ '18', '19', '20' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run format:check
- run: npm run test
- run: npm run build