test #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |