Skip to content

Commit

Permalink
[CI.yaml] Add app-build job.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Aug 1, 2024
1 parent 1ed5094 commit 14709e0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,20 @@ jobs:
node-version: "20"
- run: node bin/create-cubing-app my-cubing-project
- run: cd my-cubing-project && npm run build

jobs:
app-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
with:
node-version: "20"
- run: app-build

0 comments on commit 14709e0

Please sign in to comment.