8000 Update README.md · lokwkin/steps-track@17a676c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update README.md

Update README.md #23

Workflow file for this run

name: lib-ts tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/lib-ts
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint
- name: Run tests
run: npm test
- name: Build
run: npm run build
0