Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Update README.md

Update README.md #35

Workflow file for this run

name: Node.js
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v3
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Dependencies
run: |
sudo apt-get update
sudo apt-get install binaryen
yarn
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test Coverage
run: yarn test-coverage
- name: Bundle Size
run: yarn size