Skip to content

Update all dependencies (#593) #1422

Update all dependencies (#593)

Update all dependencies (#593) #1422

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@3041bf56c941b39c61721a86cd11f3bb1338122a # 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@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # v2
with:
file: ./coverage/cover.out
github-token: ${{ secrets.GITHUB_TOKEN }}