Skip to content

chore: Added pages link to README.md #42

chore: Added pages link to README.md

chore: Added pages link to README.md #42

Workflow file for this run

name: build
on:
push:
jobs:
build:
runs-on:
- linux
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: corepack enable
- name: Configure caching
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test