Remove extra whitespace inside parentheses #3251
Workflow file for this run
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: validation | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-link: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: "1.16.6" | |
- name: Check Link | |
run: make check-link | |
check-sort: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: "1.16.6" | |
- name: Check Link | |
run: make check-sort | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
cache: "yarn" | |
- name: Test Build | |
run: | | |
yarn install | |
yarn build |