Skip to content

Update all dependencies (#598) #1433

Update all dependencies (#598)

Update all dependencies (#598) #1433

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
with:
go-version: '^1.17.3'
- name: NPM Deps
run: npm install
- name: Run Test
run: make test
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2
with:
file: ./coverage/cover.out
github-token: ${{ secrets.GITHUB_TOKEN }}