Skip to content

Commit

Permalink
Merge pull request #193 from sfc-arch/renew
Browse files Browse the repository at this point in the history
改修
  • Loading branch information
yumaueda authored Mar 17, 2024
2 parents e22ca62 + 6a13eec commit b87ac5d
Show file tree
Hide file tree
Showing 56 changed files with 13,892 additions and 1,230 deletions.
18 changes: 18 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"env": {
"browser": true,
"es2022": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"root": true,
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
}
19 changes: 0 additions & 19 deletions .github/workflows/actionlint.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/build-jekyll.yml

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy to GitHub Pages

on:
push:
branches: [ master ]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm install -g pnpm
- run: pnpm i
- run: pnpm build
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: actions/upload-pages-artifact@v1
with:
path: build

deploy:
if: github.ref == 'refs/heads/master'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
23 changes: 0 additions & 23 deletions .github/workflows/validate-renovate.yml

This file was deleted.

26 changes: 22 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
Thumbs.db
_site
.sass-cache
.jekyll-cache
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tabWidth": 4,
"semi": false
}
2 changes: 1 addition & 1 deletion CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
arch.sfc.wide.ad.jp
arch.sfc.wide.ad.jp
3 changes: 0 additions & 3 deletions Gemfile

This file was deleted.

Loading

0 comments on commit b87ac5d

Please sign in to comment.