Skip to content

Update dependency @types/node to v16.18.117 #362

Update dependency @types/node to v16.18.117

Update dependency @types/node to v16.18.117 #362

Workflow file for this run

name: Go Test workflow
on: [push]
#
env:
APP_ENV: runner
#
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18.x', '1.19.x' ]
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
#
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test
#