We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3262a7a commit 7edf36eCopy full SHA for 7edf36e
guide/static-deploy.md
@@ -99,7 +99,7 @@ $ npm run preview
99
- name: Set up Node
100
uses: actions/setup-node@v4
101
with:
102
- node-version: 20
+ node-version: lts/*
103
cache: 'npm'
104
- name: Install dependencies
105
run: npm ci
@@ -128,7 +128,7 @@ $ npm run preview
128
2. プロジェクトルートに、`.gitlab-ci.yml` という名前でファイルを作成し、以下のように記述してください。これで、コンテンツを変更するたびにサイトのビルドとデプロイが行われます:
129
130
```yaml [.gitlab-ci.yml]
131
- image: node:16.5.0
+ image: node:lts
132
pages:
133
stage: deploy
134
cache:
0 commit comments