Skip to content

Change: use github env vars for version and hash #16

Change: use github env vars for version and hash

Change: use github env vars for version and hash #16

Workflow file for this run

name: Go build and test
on:
push:
branches: ["main"]
paths:
- "**.go"
permissions:
contents: write
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Test
run: npm run test
- name: Build
run: npm run build