From 34c612a45ba76a7bb73344a69b8b495a5577fa6b Mon Sep 17 00:00:00 2001 From: Jay Clegg <89157780+jclegg03@users.noreply.github.com> Date: Sat, 10 Jan 2026 20:28:59 -0700 Subject: [PATCH 1/2] Update Node.js version and remove period for consistency --- .../deliverable2AutomatedDeploy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md b/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md index 32450032..2aac0b5a 100644 --- a/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md +++ b/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md @@ -190,7 +190,7 @@ steps: uses: actions/checkout@v4 ``` -Then it installs Node.js version 20. +Then it installs Node.js version 22. ```yml - name: Setup Node @@ -210,7 +210,7 @@ We then create our version number, set it in a GitHub Action output variable tha printf '{"version": "%s" }' "$version" > public/version.json ``` -Next it builds the distribution bundle by installing all the dependencies, running Vite to do the bundling, and then copying over our 404 handler file fix that we introduced in the last deliverable. +Next it builds the distribution bundle by installing all the dependencies, running Vite to do the bundling. ```yml - name: Build @@ -286,6 +286,6 @@ Once JWT Pizza is live on your domain, go to the [Canvas assignment](https://byu | Percent | Item | | ------- | ------------------------------------------------------------------------------------------- | | 50% | Successful execution of GitHub Actions to deploy JWT Pizza to GitHub Pages on push | -| 10% | Version updated with each build and visible in app footer. | +| 10% | Version updated with each build and visible in app footer | | 35% | Completely functional JWT Pizza deployed with GitHub Pages accessible on custom domain name | | 5% | Pipeline status badge display on your JWT Pizza **README.md** home page | From 8d1acebacf189dbb363b02be6a185fb0c98aa548 Mon Sep 17 00:00:00 2001 From: Lee S Jensen Date: Mon, 12 Jan 2026 09:40:48 -0700 Subject: [PATCH 2/2] fix(d2) inaccuracies in instruction about CI script --- .../deliverable2AutomatedDeploy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md b/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md index 2aac0b5a..77259e51 100644 --- a/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md +++ b/instruction/deliverable2AutomatedDeploy/deliverable2AutomatedDeploy.md @@ -190,7 +190,7 @@ steps: uses: actions/checkout@v4 ``` -Then it installs Node.js version 22. +Then it installs Node.js. ```yml - name: Setup Node @@ -210,7 +210,7 @@ We then create our version number, set it in a GitHub Action output variable tha printf '{"version": "%s" }' "$version" > public/version.json ``` -Next it builds the distribution bundle by installing all the dependencies, running Vite to do the bundling. +Next it then installs all the dependencies and runs Vite to do build the distribution bundle. ```yml - name: Build