mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-12-23 12:09:47 +00:00
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
name: Test
|
||
|
jobs:
|
||
|
test:
|
||
|
name: test
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repo
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Setup Go
|
||
|
uses: actions/setup-go@v5
|
||
|
with:
|
||
|
go-version: 1.22.x
|
||
|
|
||
|
- name: Cache Go modules
|
||
|
uses: actions/cache@v3
|
||
|
with:
|
||
|
path: ~/go/pkg/mod
|
||
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-go-
|
||
|
|
||
|
- name: Run lint
|
||
|
uses: golangci/golangci-lint-action@v4
|
||
|
with:
|
||
|
version: latest
|
||
|
|
||
|
- name: setup NodeJS
|
||
|
uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: "20"
|
||
|
registry-url: "https://registry.npmjs.org"
|
||
|
|
||
|
- name: Cache node modules
|
||
|
uses: actions/cache@v3
|
||
|
with:
|
||
|
path: ~/.npm
|
||
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-node-
|
||
|
|
||
|
- name: Build UI
|
||
|
run: make ui
|
||
|
|
||
|
- name: Run test
|
||
|
run: make test
|