Skip to content

Update all dependencies #1225

Update all dependencies

Update all dependencies #1225

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@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # 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@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949 # v2
with:
file: ./coverage/cover.out
github-token: ${{ secrets.GITHUB_TOKEN }}