Skip to content

v2.0.0 업데이트 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16.20.0'
node-version: '18'
- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
- name: Lint
Expand All @@ -32,5 +33,3 @@ jobs:
cp -rp .next/static out/_next/
rm -rf .next
cp public/favicon.ico out/
- name: Run E2E tests
run: HEADLESS=true npm run test:ci-e2e
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,9 @@ dist
.pnp.*

# IDEA
.idea/

# CodeceptJS
output/
.idea/**
!.idea/codeStyles/
!.idea/codeStyles/Project.xml

# swc
.swc/
60 changes: 60 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
프로젝트 세팅 전에 변경할 것!

- `package.json` 에 `name`, `author`
- `codecept.conf.ts` 의 `name`

## Install dependencies

Expand Down
29 changes: 0 additions & 29 deletions codecept.conf.ts

This file was deleted.

Loading
Loading