Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit 2745940

Browse files
committed
update project
1 parent 8cab2ea commit 2745940

3 files changed

Lines changed: 462 additions & 57 deletions

File tree

.github/workflows/node.js-ci.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,40 +13,30 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
node-version: [14.x]
16+
node-version: [16.x]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- name: Check out Hyas project
20+
uses: actions/checkout@v2
2021

2122
- name: Install SSH key
2223
uses: shimataro/ssh-key-action@v2
2324
with:
2425
key: ${{ secrets.SSH_KEY }}
2526
known_hosts: ${{ secrets.KNOWN_HOSTS }}
2627

27-
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v1
29-
with:
30-
node-version: ${{ matrix.node-version }}
31-
3228
- name: Set up Node.js ${{ matrix.node }}
3329
uses: actions/setup-node@v2
3430
with:
3531
hugo-version: 'latest'
3632
extended: true
3733

38-
- name: Check install Hugo
39-
run: hugo version
40-
4134
- name: Install dependencies
4235
run: npm ci
4336

4437
- name: Check for linting errors
4538
run: npm test
4639

47-
- name: Delete temporary directories
48-
run: npm run clean
49-
5040
- name: Build production website
5141
run: npm run build
5242

0 commit comments

Comments
 (0)