Skip to content

Update Readme.md

Update Readme.md #7

Workflow file for this run

name: Lint & Test
on:
push:
branches: master
pull_request:
workflow_dispatch:
jobs:
test:
name: Check Linting and Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8.6
- name: Install Dependencies
run: pnpm install
- name: Run Linter
run: pnpm lint
- name: Build Source
run: pnpm build
- name: Run Tests
run: pnpm test