mirror of
https://github.com/antonmedv/fx
synced 2024-11-11 07:10:28 +00:00
30 lines
441 B
YAML
30 lines
441 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.18
|
|
|
|
- name: Test
|
|
run: go test ./...
|
|
|
|
node:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Test
|
|
run: cd npm && node test.js
|