Skip to content

Commit

Permalink
commiting to re-run deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
alexZ7000 committed Aug 27, 2024
1 parent fdb912d commit 05dfe8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -37,5 +37,5 @@ jobs:
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
2 changes: 1 addition & 1 deletion __tests__/sum.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sum from "../src/app/utils/functions/sum";

test("adds 1 + 2 to equal 3", () => {
test("add 1 + 2 to equal 3", () => {
expect(sum()).toBe(3);
});

0 comments on commit 05dfe8c

Please sign in to comment.