We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93ba666 commit 09072f1Copy full SHA for 09072f1
.github/workflows/lint-test.yaml
@@ -21,11 +21,21 @@ jobs:
21
with:
22
cache-dependency-path: |
23
cosmo-router/plugins/users/go.sum
24
+ go-version: 1.24
25
26
- uses: ./.github/actions/go-setup-tools
27
- uses: ./.github/actions/go-mod-tidy
28
29
working-directory: ./cosmo-router/plugins/users/
30
+ - uses: actions/setup-node@v4
31
+ with:
32
+ node-version: 22
33
+ cache: 'npm'
34
+ - name: Install dependencies
35
+ run: npm install
36
+ - name: Generate code
37
+ working-directory: ./cosmo-router/plugins/users
38
+ run: npm run generate
39
40
- name: Lint
41
uses: ./.github/actions/go-linter
0 commit comments