Skip to content

Commit

Permalink
Merge pull request #25 from farrah-deriv/test-link-workflow
Browse files Browse the repository at this point in the history
farrah/ci: build
  • Loading branch information
farrah-deriv authored Apr 25, 2024
2 parents da9e2cc + 0be0e70 commit 07f4dd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Publish to Cloudflare Pages
id: publish-to-pages
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_TEST_LINK_TOKEN }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
HEAD_BRANCH: ${{ github.head_ref }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/utils/object.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const isEmptyObject = (obj: any) => {
export const isEmptyObject = (obj: object) => {
let is_empty = true;
if (obj && obj instanceof Object) {
Object.keys(obj).forEach(key => {
Expand Down

0 comments on commit 07f4dd1

Please sign in to comment.