Skip to content

Tap to reveal timestamps updates #695

Tap to reveal timestamps updates

Tap to reveal timestamps updates #695

Workflow file for this run

name: Typescript CI
on:
pull_request:
branches:
- main
jobs:
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v4.0.2
with:
node-version: 18.x
cache: "yarn"
- run: yarn
- run: yarn typecheck
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v4.0.2
with:
node-version: 18.x
cache: "yarn"
- run: yarn
- run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v4.0.2
with:
node-version: 18.x
cache: "yarn"
- run: yarn
- run: yarn test