Skip to content

test

test #4

Workflow file for this run

name: Test
run-name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19.x
- uses: actions/checkout@v3
- name: Install requirements
run: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash
export NVM_DIR="$HOME/.nvm"
nvm install 14.20
go get -t ./...
make install-linters
npn install
- name: make check
run: make check
- name: make lint-ts
run: make lint-ts
- name: make build-ng
run: make build-ng
- name: make check-ui
run: make check-ui