test: try to setup GitHub action to build and test puppeteer container #1
Workflow file for this run
This file contains hidden or 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: 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 |