Skip to content

Feat: 다이어리 수정 페이지 완료 #429

Feat: 다이어리 수정 페이지 완료

Feat: 다이어리 수정 페이지 완료 #429

name: 'test-every-push'
on: push
jobs:
test:
name: Test lint, tsc, build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
- name: Cache node modules
uses: actions/cache@v2
id: cache
with:
path: node_modules
key: npm-packages-${{ hashFiles('**/package-lock.json') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- run: npm run lint
if: ${{ always() }}
- run: npm run tsc
if: ${{ always() }}
- run: npm run build
if: ${{ always() }}