Skip to content

Commit

Permalink
Merge branch 'main' into SITES-17354
Browse files Browse the repository at this point in the history
  • Loading branch information
alinarublea committed Jan 23, 2024
2 parents 0ae4900 + 99245b9 commit c310002
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,19 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run lint
- run: npm test
- name: Install Dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Unit Tests
run: npm test
- name: Integration Tests
run: npm run --prefix packages/spacecat-shared-data-access test:it
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Semantic Release (Dry Run)
if: github.ref != 'refs/heads/main'
run: npm run semantic-release-dry
env:
GITHUB_TOKEN: ${{ secrets.ADOBE_BOT_GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion packages/spacecat-shared-data-access/test/it/db.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe('DynamoDB Integration Test', async () => {

dynamoDbLocalProcess = dynamoDbLocal.spawn({ port: 8000, sharedDb: true });

await sleep(1000); // give db time to start up
await sleep(3000); // give db time to start up

await generateSampleData(
TEST_DA_CONFIG,
Expand Down

0 comments on commit c310002

Please sign in to comment.