chore(release): 0.0.33 #259
This file contains hidden or 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: 👾 Lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
lint-go: | |
name: Lint go | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.24' | |
cache: false | |
- name: Add Go bin to PATH | |
run: | | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
- name: Install linter | |
run: task install-lint-tools | |
- name: Run linter | |
run: task lint | |
lint-js: | |
name: Lint js | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
cache: 'yarn' | |
- name: Yarn install | |
run: yarn | |
- name: Run lint | |
run: yarn lint | |
- name: Run type check | |
run: yarn type-check | |