Node.js CI #80
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: Node.js CI | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 6 * * 1' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Clone repository | |
run: git clone https://github.com/berstend/puppeteer-extra.git puppeteer-extra --depth=1 | |
- name: 'Fix for: error fsevents@2.1.2: The platform "linux" is incompatible with this module.' | |
run: cd puppeteer-extra && npx json -I -f package.json -e 'this.resolutions={}' | |
- name: Build packages | |
run: | | |
cd puppeteer-extra | |
yarn install | |
yarn bootstrap | |
yarn build | |
- name: Extract stealth.min.js | |
run: | | |
cd puppeteer-extra/packages/extract-stealth-evasions | |
node index.js | |
cp stealth.min.js ../../../ | |
- name: Commit stealth.min.js | |
uses: EndBug/add-and-commit@v4 | |
with: | |
add: 'stealth.min.js' | |
force: true | |
ref: 'main' | |
message: 'Auto-updated stealth.min.js with newest evasions' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |