[C3] Bump create-qwik from 1.2.13 to 1.2.14 in /packages/create-cloudflare/src/frameworks #117
Workflow file for this run
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: C3 Checks | |
on: | |
pull_request: | |
paths: | |
- packages/create-cloudflare/** | |
env: | |
node-version: 18.17.1 | |
jobs: | |
check: | |
name: "Checks" | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Check Types | |
run: pnpm run --filter create-cloudflare check:type | |
- name: Lint | |
run: pnpm run --filter create-cloudflare check:lint | |
- name: Unit Tests | |
run: pnpm run --filter create-cloudflare test:unit |