Skip to content

feat: use shell stdout, stderr streams #31

feat: use shell stdout, stderr streams

feat: use shell stdout, stderr streams #31

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/action-setup@v4
with:
version: 8.10.2
- name: Install and Lint
run: |
pnpm install
pnpm lint
- name: Build
run: |
pnpm build