CI pokes and prods #518
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
HUGO_VERSION: 0.118.2 | |
jobs: | |
integration-test: | |
runs-on: ${{ matrix.os }} | |
env: | |
cwd: ./javascript-modules | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
hugo_target: linux-amd64 | |
- os: windows-latest | |
hugo_target: windows-amd64 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install hugo | |
uses: supplypike/setup-bin@v1 | |
with: | |
uri: "https://github.com/gohugoio/hugo/releases/download/v${{env.HUGO_VERSION}}/hugo_extended_${{env.HUGO_VERSION}}_${{matrix.hugo_target}}.tar.gz" | |
name: "hugo" | |
version: ${{env.HUGO_VERSION}} | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
# TODO: Remove when possible (https://github.com/actions/setup-node/issues/515) | |
- name: Windows Node fix | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
$WhereNode = Get-Command node | Select-Object -ExpandProperty Definition | |
$NodeDirPath = Split-Path $WhereNode -Parent | |
cd $NodeDirPath | |
npm install [email protected] | |
- name: Use Ruby 2.7.x | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Use Go 1.21.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "^1.21.1" | |
- run: yarn install --immutable | |
working-directory: ${{ env.cwd }} | |
- name: Build Hugo wasm module | |
run: go build -tags nodeploy -o hugo_renderer.wasm | |
working-directory: ${{ env.cwd }}/engines/hugo-engine/full-hugo-renderer | |
env: | |
GOOS: js | |
GOARCH: wasm | |
- name: Gzip Hugo wasm module | |
run: gzip --keep hugo_renderer.wasm | |
working-directory: ${{ env.cwd }}/engines/hugo-engine/full-hugo-renderer | |
- run: yarn run itest-slow | |
working-directory: ${{ env.cwd }}/integration-tests |