fix: Thoth geoip compare #2745
Workflow file for this run
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: Go | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| go_tests: | |
| #runs-on: alrest-techarohq | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: build essential | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: "24.11.0" | |
| - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 | |
| with: | |
| go-version: "stable" | |
| - name: Cache playwright binaries | |
| uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 | |
| id: playwright-cache | |
| with: | |
| path: | | |
| ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ hashFiles('**/go.sum') }} | |
| - name: install node deps | |
| run: | | |
| npm ci | |
| - name: install playwright browsers | |
| run: | | |
| npx --no-install playwright@1.52.0 install --with-deps | |
| npx --no-install playwright@1.52.0 run-server --port 9001 & | |
| - name: Build | |
| run: npm run build | |
| - name: Test | |
| run: npm run test | |
| - name: Lint with staticcheck | |
| uses: dominikh/staticcheck-action@9716614d4101e79b4340dd97b10e54d68234e431 # v1.4.1 | |
| with: | |
| version: "latest" | |
| - name: Govulncheck | |
| run: | | |
| go tool govulncheck ./... ||: |