mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-02-22 16:15:54 +00:00
update depends
This commit is contained in:
parent
c758212a37
commit
5e6c0fad4e
6 changed files with 2091 additions and 1323 deletions
11
.github/workflows/github-pages.yml
vendored
11
.github/workflows/github-pages.yml
vendored
|
@ -1,7 +1,8 @@
|
||||||
name: github-pages
|
name: github-pages
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches:
|
||||||
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
permissions:
|
permissions:
|
||||||
|
@ -12,11 +13,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with: { node-version: lts/*, cache: yarn }
|
with:
|
||||||
|
node-version: "lts/*"
|
||||||
|
cache: npm
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
yarn install
|
npm ci
|
||||||
yarn build
|
npm run build
|
||||||
- uses: actions/upload-pages-artifact@v3
|
- uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: pages
|
path: pages
|
||||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
||||||
/pages/
|
/pages/
|
||||||
/node_modules/
|
node_modules
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
overrides:
|
|
||||||
- files: "*.md"
|
|
||||||
options:
|
|
||||||
parser: markdown-nocjsp
|
|
2082
package-lock.json
generated
Normal file
2082
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -8,7 +8,6 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@marp-team/marp-cli": "^3.0.0",
|
"@marp-team/marp-cli": "^3.0.0",
|
||||||
"prettier": "^3.0.0",
|
"prettier": "^3.0.0"
|
||||||
"prettier-plugin-md-nocjsp": "^1.5.1"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue