[Makefile] Make test-create-and-build
a target.
#76
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: CI | ||
on: [push, pull_request] | ||
jobs: | ||
create-and-build: | ||
name: Create and build | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
- uses: oven-sh/setup-bun@v2 | ||
with: | ||
bun-version: "latest" | ||
with: | ||
Check failure on line 21 in .github/workflows/CI.yaml
|
||
node-version: "20" | ||
- run: make test-create-and-build | ||
app-template-build: | ||
name: Create and build app from repo | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
- uses: oven-sh/setup-bun@v2 | ||
with: | ||
bun-version: "latest" | ||
with: | ||
node-version: "20" | ||
- run: make setup | ||
- run: make app-template-build |