Skip to content

Circuit UI App Templates #11

Circuit UI App Templates

Circuit UI App Templates #11

Workflow file for this run

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"