Skip to content

Regenerate embed asset #81

Regenerate embed asset

Regenerate embed asset #81

Workflow file for this run

name: build
on:
push:
tags: [v*]
branches: [master]
pull_request:
jobs:
# See https://github.com/mvdan/github-actions-golang
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x]
steps:
- name: Install Go@v${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
# See https://github.com/actions/cache/blob/master/examples.md#go---modules
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: go test ./...
test-webui:
runs-on: ubuntu-latest
defaults:
run:
working-directory: webui/internal/assets
# See https://docs.github.com/en/actions/guides/building-and-testing-nodejs
steps:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Checkout code
uses: actions/checkout@v2
# See https://github.com/actions/cache/blob/master/examples.md#node---yarn
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Test
run: yarn test