Circuit UI App Templates #19
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: Circuit UI App Templates | |
on: | |
schedule: | |
- cron: '0 3 * * 1' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18, 20] | |
template: | |
[ | |
'npx create-next-app --example "https://github.com/sumup-oss/circuit-ui/tree/main/packages/cna-template/template" test-app', | |
'npx create-remix@latest ./test-app --template https://github.com/sumup-oss/circuit-ui/tree/main/packages/remix-template --typescript --install', | |
] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- name: Bootstrap app | |
run: ${{ matrix.template }} | |
- name: Build app | |
working-directory: ./test-app | |
run: npm run build | |
- name: Install test dependencies | |
run: npm install puppeteer | |
- name: Test app | |
working-directory: ./test-app | |
run: npx start-server-and-test start 0.0.0.0:3000 "node ../scripts/verify-template.js" |