Skip to content

Commit

Permalink
test: try to setup GitHub action to build and test puppeteer container
Browse files Browse the repository at this point in the history
  • Loading branch information
ahwayakchih authored Jan 16, 2025
1 parent 0f99970 commit 5989eb9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/puppeteer-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: puppeteer-container

on:
push:
branches: [ "puppeteer-container" ]

jobs:

build:
runs-on: ubuntu-latest

steps:
- name: Workaround Windows mess and set git to keep original line endings
run: git config --global core.autocrlf false

- uses: actions/checkout@v4

- run: podman --version

- name: Build container image
run: podman build -t puppeteer -f puppeteer.containerfile

- name: List images
run: podman images

0 comments on commit 5989eb9

Please sign in to comment.