Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions .github/workflows/autorun.yml

This file was deleted.

11 changes: 8 additions & 3 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
name: typecheck github actions
on: [push, pull_request]
on:
push:
branches: [master, develop]
pull_request: [develop, feature/**]
jobs:
build:
strategy:
matrix:
node-version: [16.x, 17.x]

runs-on: macOS-latest # 배포 시 체크
runs-on: ubuntu-latest
name: "Type Check"

steps:
# ts type check
- name: Type Check
run: tsc --project ./src/index
run: |
yarn install
tsc --project ./src/index

# 실패 시 슬랙에 알림
- name: Notify failure
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules
.env
.env
yarn.lock
.serverless
Loading