Skip to content

chore: debug git tag push #8

chore: debug git tag push

chore: debug git tag push #8

Workflow file for this run

name: tests
on:
workflow_call:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
# cache: "npm" # needs lockfile if enabled
- name: go
uses: actions/setup-go@v4
with:
go-version: 1.19
- run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.0
- run: npm install
- run: npm run lint
- run: npm test