Skip to content

fix: improve global request logging #10

fix: improve global request logging

fix: improve global request logging #10

Workflow file for this run

name: Lint
on:
push:
branches:
- '*'
- '*/*'
pull_request:
paths:
- '**.ts'
- '**.tsx'
- '**.js'
- '**.cjs'
- '**.mjs'
- '**.jsx'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
- name: Setup NodeJS
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8.10.2
- name: Install and Lint
run: |
pnpm install
pnpm lint
- name: Build
run: |
pnpm build