Skip to content

chore(deps): update actions/setup-node digest to 0a44ba7 #163

chore(deps): update actions/setup-node digest to 0a44ba7

chore(deps): update actions/setup-node digest to 0a44ba7 #163

Workflow file for this run

name: CI
on:
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
name: 'Lint: node-18, ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
- name: Set node version to 18
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: 18
- name: Install deps
run: npm install
- name: Lint
run: npm run lint
format:
runs-on: ubuntu-latest
timeout-minutes: 5
name: 'Format: node-18, ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
- name: Set node version to 18
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: 18
- name: Install deps
run: npm install
- name: Format
run: npx prettier src --check
ts-check-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
name: 'TS-Check Tests: node-18, ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
- name: Set node version to 18
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: 18
- name: Install deps
run: npm install
- name: Check tests
run: npx tsc --noEmit