Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: 'build-test'
on:
push:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build, format, lint, package, and run tests
run: npm run all
env:
CI: true