Skip to content

Several minor changes to improve code quality and reliability #172

Several minor changes to improve code quality and reliability

Several minor changes to improve code quality and reliability #172

Workflow file for this run

name: Build Test
on:
push:
paths-ignore:
- "README.md"
- "LICENSE"
- ".github/workflows/check.yml"
jobs:
job:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.18.1
cache: "yarn" # caches the yarn cache folder not node_modules
- name: Prepare
run: yarn install --frozen-lockfile
- name: Build Test
run: yarn run build