diff options
author | Giovanni Condello <nanomad@users.noreply.github.com> | 2023-06-07 22:28:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 22:28:07 +0200 |
commit | b5aa73a3a53859899538111861e33d1fb2458422 (patch) | |
tree | 56636c2446cbfef663b5172a39abe7f45c39532b /.github/workflows/pages.yml | |
parent | Removed use of openPortLineBreak/LineBreakTransformer in unlockHuaweiShell() (#228) (diff) | |
download | hack-gpon.github.io-b5aa73a3a53859899538111861e33d1fb2458422.tar hack-gpon.github.io-b5aa73a3a53859899538111861e33d1fb2458422.tar.gz hack-gpon.github.io-b5aa73a3a53859899538111861e33d1fb2458422.tar.bz2 hack-gpon.github.io-b5aa73a3a53859899538111861e33d1fb2458422.tar.lz hack-gpon.github.io-b5aa73a3a53859899538111861e33d1fb2458422.tar.xz hack-gpon.github.io-b5aa73a3a53859899538111861e33d1fb2458422.tar.zst hack-gpon.github.io-b5aa73a3a53859899538111861e33d1fb2458422.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/pages.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5401b7f..475999b 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -30,6 +30,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Setup node + uses: actions/setup-node@v3 + with: + node-version: 20 + - name: Install Node deps + run: npm ci + - name: Compile typescript + run: npm run build - name: Setup Ruby uses: ruby/setup-ruby@v1 with: |