Skip to content

Commit

Permalink
Merge branch 'main' into node/unified-snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
kanadgupta committed Aug 23, 2023
2 parents 689189d + e5ddfbd commit 7ef4ae4
Show file tree
Hide file tree
Showing 76 changed files with 26,140 additions and 37,110 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/cloudflare-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,16 @@ jobs:
- run: npm ci --ignore-scripts
- run: npm run build
- run: npm test

# This is being run separately since it's not playing nicely with Node 14.
# Once we drop Node 14 support we can probably consolidate this again.
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/cloudflare-worker

steps:
- uses: actions/checkout@v3
- run: npm ci --ignore-scripts
- run: npm run lint
13 changes: 13 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,16 @@ jobs:

- run: npm ci --ignore-scripts
- run: npm test

# This is being run separately since it's not playing nicely with Node 14.
# Once we drop Node 14 support we can probably consolidate this again.
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/node

steps:
- uses: actions/checkout@v3
- run: npm ci --ignore-scripts
- run: npm run lint
13 changes: 13 additions & 0 deletions .github/workflows/snippets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,16 @@ jobs:
- run: npm ci --ignore-scripts
- run: npm run build
- run: npm test

# This is being run separately since it's not playing nicely with Node 14.
# Once we drop Node 14 support we can probably consolidate this again.
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/sdk-snippets

steps:
- uses: actions/checkout@v3
- run: npm ci --ignore-scripts
- run: npm run lint
Loading

0 comments on commit 7ef4ae4

Please sign in to comment.