Skip to content

Commit

Permalink
Create temp folder in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed Sep 30, 2024
1 parent 04441ab commit c4db2d6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/check_ig_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,14 @@ jobs:
with:
node-version: 16

- name: Install dependencies
run: npx playwright install --with-deps
- name: Create package.json
run: |
echo '{}' > package.json
- name: Install Playwright
run: |
npm install @playwright/test # Install Playwright
npx playwright install --with-deps
- name: Run Playwright link checks
run: node checkIgLinks.js
Expand Down

0 comments on commit c4db2d6

Please sign in to comment.