fx/.github/workflows/test.yml

30 lines
439 B
YAML
Raw Permalink Normal View History

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