Skip to content

chore: Added Discord link to the website #64

chore: Added Discord link to the website

chore: Added Discord link to the website #64

Workflow file for this run

name: Run Tests and Type Check
env:
CI: true
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: Install
run: pnpm install
- name: Build
run: pnpm run build
- name: Type check
run: pnpm run typecheck
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node_version: [18]
include:
- os: macos-latest
node_version: 18
- os: windows-latest
node_version: 18
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node_version }}
- name: Install
run: pnpm install
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test