fx/.github/workflows/test.yml

30 lines
439 B
YAML
Raw Normal View History

2022-04-19 21:12:44 +00:00
name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
2023-09-15 07:57:04 +00:00
go:
2022-04-19 21:12:44 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
2023-04-08 01:17:17 +00:00
- name: Test
run: go test ./...
node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: cd npm && node test.js