Skip to content

fix: select everybody by default and show different tstyle for winner #73

fix: select everybody by default and show different tstyle for winner

fix: select everybody by default and show different tstyle for winner #73

Workflow file for this run

name: Linter & Type Checking
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn
- name: Type Checking
run: yarn tsc
- name: Lint
run: yarn lint