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 4729657 commit 8631acfCopy full SHA for 8631acf
.github/workflows/main.yml
@@ -7,6 +7,7 @@ on:
7
branches: ['main']
8
paths:
9
- '2025/**'
10
+ - '.github/workflows/main.yml'
11
12
# Allows you to run this workflow manually from the Actions tab
13
workflow_dispatch:
@@ -37,10 +38,12 @@ jobs:
37
38
with:
39
node-version: lts/*
40
cache: 'npm'
- cache-dependency-path: 2025/package-lock.json
41
42
- name: Install dependencies
43
- run: cd 2025 && npm ci
+ run: |
44
+ cd 2025
45
+ rm -rf node_modules package-lock.json
46
+ npm i
47
48
- name: Build
49
run: cd 2025 && npm run build
@@ -53,7 +56,7 @@ jobs:
53
56
54
57
# Upload dist folder
55
58
path: '2025/dist'
-
59
+
60
- name: Deploy to GitHub Pages
61
id: deployment
62
uses: actions/deploy-pages@v4
0 commit comments