Skip to content

fix: bad function used #6

fix: bad function used

fix: bad function used #6

Workflow file for this run

name: Checks
on:
push:
jobs:
checks:
name: Install and build
runs-on: ubuntu-latest
strategy:
# see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast
fail-fast: false
matrix:
node-version:
- 22.x
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Build dist
run: yarn run build