We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d8fb6e commit 1cd65b4Copy full SHA for 1cd65b4
1 file changed
.github/workflows/angular-deploy-github-pages.yml
@@ -19,6 +19,11 @@ jobs:
19
with:
20
node-version: 24 # Ensure this matches your project's Node.js version
21
22
+ - name: Test
23
+ uses: ./.github/actions/test/
24
+ with:
25
+ codecov_token: ${{ secrets.CODECOV_TOKEN }}
26
+
27
- name: Install Dependencies
28
run: npm install
29
working-directory: frontend/
@@ -27,11 +32,6 @@ jobs:
32
run: npm run build -- --output-path ../dist
33
34
30
- - name: Test
31
- uses: ./.github/actions/test/
- with:
- codecov_token: ${{ secrets.CODECOV_TOKEN }}
-
35
- name: Copy CNAME file
36
run: |
37
echo "www.drumbeatrepo.com" > dist/browser/CNAME
0 commit comments