mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-02-22 08:05:55 +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
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
main:
|
||||
permissions:
|
||||
|
@ -12,11 +13,13 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with: { node-version: lts/*, cache: yarn }
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
cache: npm
|
||||
- name: Build
|
||||
run: |
|
||||
yarn install
|
||||
yarn build
|
||||
npm ci
|
||||
npm run build
|
||||
- uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: pages
|
||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
/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": {
|
||||
"@marp-team/marp-cli": "^3.0.0",
|
||||
"prettier": "^3.0.0",
|
||||
"prettier-plugin-md-nocjsp": "^1.5.1"
|
||||
"prettier": "^3.0.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue