Skip to content

fix repository URL

fix repository URL #7

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22.12.0
- name: Use node_modules cache
uses: actions/cache@v4
with:
path: node_modules
key: yarn-node-22-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-node-22-
- run: yarn install --frozen-lockfile
- run: yarn type-check
- run: yarn build
- uses: actions/upload-artifact@v4
with:
name: build-output
path: dist
if-no-files-found: error