This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
making screen size detection mandatory (and fixed for dev container),… #156
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: Commit Tests | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
run-checks: | |
name: run-checks | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
environment: ci | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: "true" | |
VITE_FIREBASE_CONFIG_JSON: ${{ secrets.VITE_FIREBASE_CONFIG_JSON }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run checks from container | |
uses: devcontainers/[email protected] | |
with: | |
push: never | |
runCmd: just check |