Aliexpress Product Checker #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Aliexpress Product Checker | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 9 * * 1 # 9AM every monday | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: node:19 | |
services: | |
selenium: | |
image: selenium/standalone-chrome | |
options: --shm-size=2gb | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 19 | |
- uses: abhi1693/[email protected] | |
with: | |
browser: firefox | |
- run: npm i selenium-webdriver | |
- run: npx node .github/workflows/test-ali-links.mjs |