Skip to content

Update repo link

Update repo link #41

Workflow file for this run

name: Continuous Integration
# This action works with pull requests and pushes
on:
pull_request:
push:
branches:
- main
jobs:
typescriptCheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Use pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- name: Typescript check
run: pnpm tsc
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Use pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- name: Lint code
run: pnpm lint
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Use pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- name: Prettify code
run: pnpm format:check