Skip to content

Commit efe18de

Browse files
authored
Merge pull request #143 from zeakd/dev
v2: dev → main
2 parents 9db81f4 + 088b714 commit efe18de

388 files changed

Lines changed: 19476 additions & 9428 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ on:
44
pull_request:
55
branches: [main]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
ci:
912
runs-on: ubuntu-latest
1013
steps:
11-
- uses: actions/checkout@v4
12-
- uses: pnpm/action-setup@v4
13-
- uses: actions/setup-node@v4
14+
- uses: actions/checkout@v6.0.2
15+
- uses: pnpm/action-setup@v5.0.0
16+
- uses: actions/setup-node@v6.3.0
1417
with:
15-
node-version: 22
18+
node-version: 24
1619
cache: pnpm
17-
- run: pnpm install
20+
- run: pnpm install --frozen-lockfile
1821
- run: pnpm -r run build
1922
- run: pnpm -r run lint
2023
- run: pnpm -r run test

.github/workflows/deploy-next-website.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/deploy-website.yml

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,38 @@ on:
55
branches:
66
- main
77

8-
env:
9-
NEXT_PUBLIC_GA_TRACKING_ID: G-51RCXPWJLZ
10-
NEXT_PUBLIC_WEBSITE_BASE_PATH: '/react-naver-maps'
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
1116

1217
jobs:
13-
build-and-deploy:
14-
concurrency: ci-${{ github.ref }}
18+
build:
1519
runs-on: ubuntu-latest
1620
steps:
17-
- name: Checkout
18-
uses: actions/checkout@v4
19-
- uses: pnpm/action-setup@v4
20-
- name: Use Node.js 22
21-
uses: actions/setup-node@v4
21+
- uses: actions/checkout@v6.0.2
22+
- uses: pnpm/action-setup@v5.0.0
23+
- uses: actions/setup-node@v6.3.0
2224
with:
23-
node-version: 22
25+
node-version: 24
2426
cache: pnpm
25-
- name: Install and Build
26-
run: |
27-
pnpm install
28-
pnpm -r run build
29-
30-
- name: Deploy
31-
uses: JamesIves/github-pages-deploy-action@v4
27+
- run: pnpm install --frozen-lockfile
28+
- run: pnpm -r run build
29+
- uses: actions/upload-pages-artifact@v4.0.0
3230
with:
33-
folder: website/out
34-
clean: false
31+
path: website/dist
32+
33+
deploy:
34+
needs: build
35+
runs-on: ubuntu-latest
36+
environment:
37+
name: github-pages
38+
url: ${{ steps.deployment.outputs.page_url }}
39+
steps:
40+
- uses: actions/configure-pages@v5.0.0
41+
- id: deployment
42+
uses: actions/deploy-pages@v4.0.5

.github/workflows/release.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77

88
concurrency: ${{ github.workflow }}-${{ github.ref }}
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
release:
1215
name: Release
@@ -16,34 +19,29 @@ jobs:
1619
pull-requests: write
1720
id-token: write
1821
steps:
19-
- name: Checkout Repo
20-
uses: actions/checkout@v4
22+
- uses: actions/checkout@v6.0.2
2123

22-
- uses: pnpm/action-setup@v4
24+
- uses: pnpm/action-setup@v5.0.0
2325

24-
- name: Setup Node.js 24
25-
uses: actions/setup-node@v4
26+
- uses: actions/setup-node@v6.3.0
2627
with:
2728
node-version: 24
2829
registry-url: https://registry.npmjs.org
2930
cache: pnpm
3031

31-
- name: Install Dependencies
32-
run: pnpm install
32+
- run: pnpm install --frozen-lockfile
3333
env:
3434
HUSKY: '0'
3535

36-
- name: Build
37-
run: pnpm -r run build
36+
- run: pnpm -r run build
3837

3938
- name: Create Release Pull Request or Publish to npm
4039
id: changesets
41-
uses: changesets/action@v1
40+
uses: changesets/action@v1.7.0
4241
with:
4342
publish: pnpm changeset publish
4443
env:
4544
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46-
NPM_TOKEN: ''
4745
NPM_CONFIG_PROVENANCE: 'true'
4846
HUSKY: '0'
4947

.gitignore

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,21 @@ styleguide/index.html
6969

7070
.DS_Store
7171

72-
.idea
72+
.idea
73+
74+
# TypeScript build info
75+
tsconfig.tsbuildinfo
76+
77+
# Astro
78+
.astro/
79+
80+
# Legacy packages (reference only)
81+
tmp/
82+
83+
# Internal research (reverse engineering, analysis - not committed)
84+
research/
85+
86+
# Playwright
87+
test-results/
88+
__tile_cache__/
89+
screenshots/

.husky/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.husky/pre-commit

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
4-
pnpm install
5-
git add .
6-
pnpm recursive run build
7-
pnpm recursive run lint
8-
pnpm recursive run test
1+
pnpm exec oxlint --ignore-path .gitignore --ignore-pattern 'website/public/0.1.0/**'
2+
pnpm exec oxfmt --check --ignore-path .gitignore --ignore-path .oxfmtignore .
3+
pnpm exec tsc -b

.oxfmtignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
website/public/0.1.0/

0 commit comments

Comments
 (0)