Skip to content

Commit

Permalink
chore: upgrade to Node.js v22
Browse files Browse the repository at this point in the history
  • Loading branch information
frytg committed Jun 26, 2024
1 parent 472721a commit bee023e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ingest-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
test:
needs: security
runs-on: ubuntu-latest
strategy:
matrix:
STAGES: [dev]
steps:
- name: 👀 Checkout Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -62,7 +59,7 @@ jobs:
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
PUBSUB_SERVICE_ACCOUNT_EMAIL_INTERNAL: ${{ secrets.PUBSUB_SERVICE_ACCOUNT_EMAIL }}
SERVICE_NAME: ard-eventhub-ingest
STAGE: ${{ matrix.STAGES }}
STAGE: dev
TEST_USER: ${{ secrets.TEST_USER }}
TEST_USER_PW: ${{ secrets.TEST_USER_PW }}
run: bun ingest:test
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"coreId": "node ./src/coreId/index.js",
"ingest:local": "node --trace-deprecation --env-file .env ./node_modules/nodemon/bin/nodemon ./src/ingest/index.js",
"ingest:cloud": "node ./src/ingest/index.js",
"ingest:test": "node --env-file .env ./node_modules/mocha/bin/mocha --recursive './src/**/*.test.js' --timeout 15000 --exit",
"ingest:test:local": "node --env-file .env ./node_modules/mocha/bin/mocha --recursive './src/**/*.test.js' --timeout 15000 --exit",
"ingest:test": "mocha --recursive './src/**/*.test.js' --timeout 15000 --exit",
"ingest:lint": "biome lint src",
"docker:build": "docker build . -t swr/ard-eventhub",
"docker:run": "docker run --env-file .env -p 8080:8080 --name ard-eventhub swr/ard-eventhub",
Expand Down

0 comments on commit bee023e

Please sign in to comment.