Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pili-book authored Jul 11, 2024
1 parent 1942954 commit 1ba4c13
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Puppeteer Test

on:
push:
branches: [ main ]

jobs:
puppeteer-job:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '12.x'

- name: Install Puppeteer Dependencies
run: npm install

- name: Puppeteer Test
run: node test.js

0 comments on commit 1ba4c13

Please sign in to comment.