Skip to content

v1.1.2 add runOnChildWithName(), add timingMode to chained actions #16

v1.1.2 add runOnChildWithName(), add timingMode to chained actions

v1.1.2 add runOnChildWithName(), add timingMode to chained actions #16

Workflow file for this run

name: "lint"
on:
push:
branches: ["main"]
paths:
- "**/*.ts"
pull_request:
branches: ["main"]
paths:
- "**/*.ts"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint