fix: ensure DYNAMO_ENDPOINT env overwrites default endpoint when set … #357
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: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
name: Test and lint | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: npm install | |
run: npm i | |
- name: build | |
run: npm run build | |
- name: Unittesting | |
run: npm run test | |
- name: Linting | |
run: npm run lint |