Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Tolerblanc committed Oct 26, 2023
2 parents 80324e8 + b078193 commit ea1518e
Show file tree
Hide file tree
Showing 23 changed files with 641 additions and 20 deletions.
4 changes: 0 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

<br><br>

## 작업 내용

<br><br>

## 참고 사항

<br><br>
Expand Down
27 changes: 18 additions & 9 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
name: Lint
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: check current path
run : pwd
- name: list directories
run : ls
- name: Change to directory
run: cd ./srcs/nest/src

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
- name: Install dependencies
run: npm install
working-directory: /home/runner/work/Backend/Backend/srcs/nest/src
- name: Run ESLint
run: npm run lint
working-directory: /home/runner/work/Backend/Backend/srcs/nest/src
Loading

0 comments on commit ea1518e

Please sign in to comment.