Skip to content

chore: LicenceフィールドをUNLICENSEDにする(#DTB-2076) (#11) #3

chore: LicenceフィールドをUNLICENSEDにする(#DTB-2076) (#11)

chore: LicenceフィールドをUNLICENSEDにする(#DTB-2076) (#11) #3

Workflow file for this run

name: Check
on:
workflow_dispatch:
pull_request:
paths:
- "**.ts"
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
type-check:
name: type-check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
cache-dependency-path: "yarn.lock"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Type check
run: yarn type-check
lint:
name: lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
cache-dependency-path: "yarn.lock"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint