build(deps): bump golang.org/x/net from 0.34.0 to 0.35.0 #2164
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: Linters | |
permissions: read-all | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
jshint: | |
name: Javascript Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install linters | |
run: | | |
sudo npm install -g [email protected] [email protected] | |
- name: Run jshint | |
run: jshint internal/ui/static/js/*.js | |
- name: Run ESLint | |
run: eslint internal/ui/static/js/*.js | |
golangci: | |
name: Golang Linters | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.x" | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
args: > | |
--timeout 10m | |
--exclude-dirs=tests | |
--disable errcheck | |
--enable sqlclosecheck,misspell,gofmt,goimports,whitespace,gocritic | |
- uses: dominikh/[email protected] | |
with: | |
version: "2024.1.1" | |
install-go: false | |
commitlint: | |
name: Commit Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install commitlint | |
run: | | |
npm install --save-dev @commitlint/config-conventional @commitlint/cli | |
echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js | |
- name: Validate PR commits | |
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose |