Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

test

test #42

Workflow file for this run

name: ci
on:
push:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
npm install
npm run check:ci
spell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
npm install
npm run spell
build:
needs: [check, spell]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
npm install
npm run build