Skip to content

Mimic official rM JWT #21

Mimic official rM JWT

Mimic official rM JWT #21

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
cache-dependency-path: ui/yarn.lock
- name: Build
run: make build
- name: Test UI
run: make testui
- name: TestGO
run: make testgo