Skip to content

Update README.md

Update README.md #4

Workflow file for this run

name: push
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "*"
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm test