Skip to content

chore: Forgot to update yarn lock files #24

chore: Forgot to update yarn lock files

chore: Forgot to update yarn lock files #24

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