Skip to content

Commit

Permalink
Drop nodejs from testing workflow
Browse files Browse the repository at this point in the history
We do not use nodejs at all in this project and we do not need it for
testing noe.

Change-Id: I7b9581229755984ec6fdf99bbcff111e36452bcb
  • Loading branch information
miguelbernadi committed Jul 21, 2023
1 parent 991e12c commit dc103a9
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,13 @@ jobs:
restore-keys: |
${{ runner.os }}-golang-
- name: Setup Node caches
uses: actions/cache@v3
with:
path: |
~/.npm-global
key: ${{ runner.os }}-node-${{ hashFiles('.github/workflows/**.y*ml') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: '1.20'

- uses: actions/setup-node@v3
with:
node-version: 14

- name: Setup kubectl
uses: azure/[email protected]
with:
version: 'v1.15.6'

- name: Install AWS CDK
run: |
npm install -g aws-cdk
env:
NPM_CONFIG_PREFIX: ~/.npm-global

- name: run go tests
run: |
export PATH=$PATH:~/.npm-global/bin
go test -v ./...
env:
NPM_CONFIG_PREFIX: ~/.npm-global
RUN_INTEGRATION_TESTS: true

0 comments on commit dc103a9

Please sign in to comment.