Skip to content

undici version upgrade #372

undici version upgrade

undici version upgrade #372

Workflow file for this run

---
name: Linting
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch: { }
jobs:
build:
runs-on: ubuntu-latest
name: Linting and types
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Run npm install
run: npm install
- name: Build TS
run: npm run build
- name: Run lint
run: npm run lint