Skip to content

docs: cleanup

docs: cleanup #3

Workflow file for this run

name: Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn --immutable
- name: Test Check
# When fails, please check your tests
run: npm run test