Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

fix: apply default agent options #84

fix: apply default agent options

fix: apply default agent options #84

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
type: [opened, synchronize]
jobs:
test:
name: Test Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [12.x, 14.x, 16.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
with:
version: 6.34.0
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Run Linter
run: pnpm lint
- name: Run Tests
run: pnpm test