Skip to content

Commit

Permalink
🐛Fix: github workflows 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
heejung0413 committed Apr 4, 2024
1 parent c75d187 commit bc013f0
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/deploy-production.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/lint-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: lint check

on: pull_request

jobs:
eslint-test:
name: eslint test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18.18.0'
- run: npm install
- run: npm run lint
15 changes: 15 additions & 0 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: type check

on: pull_request

jobs:
type-test:
name: type test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18.18.0'
- run: npm install
- run: npm run typecheck
Empty file modified .husky/pre-commit
100755 → 100644
Empty file.

0 comments on commit bc013f0

Please sign in to comment.