From e4698207620d2ad1a637162ab6caa76fe5f1805a Mon Sep 17 00:00:00 2001 From: DiegoDev-7 Date: Sat, 20 Jun 2026 19:38:14 -0500 Subject: [PATCH 1/2] New version --- README.md | 2 ++ package-lock.json | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index e58be39d95..264c082d67 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,5 @@ npm run dev _This starts the server in non-database mode._ It will serve a simple webpage at `http://localhost:8080`. You do _not_ need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! + +This is new version on this readme \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 170f9ea5c8..788317246f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -830,6 +830,7 @@ "version": "0.14.0", "resolved": "https://registry.npmjs.org/@libsql/client/-/client-0.14.0.tgz", "integrity": "sha512-/9HEKfn6fwXB5aTEEoMeFh4CtG0ZzbncBb1e++OCdVpgKZ/xyMsIVYXm0w7Pv4RUel803vE6LwniB3PqD72R0Q==", + "peer": true, "dependencies": { "@libsql/core": "^0.14.0", "@libsql/hrana-client": "^0.7.0", @@ -1437,6 +1438,7 @@ "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", "dev": true, "hasInstallScript": true, + "peer": true, "bin": { "esbuild": "bin/esbuild" }, @@ -3075,6 +3077,7 @@ "version": "0.14.0", "resolved": "https://registry.npmjs.org/@libsql/client/-/client-0.14.0.tgz", "integrity": "sha512-/9HEKfn6fwXB5aTEEoMeFh4CtG0ZzbncBb1e++OCdVpgKZ/xyMsIVYXm0w7Pv4RUel803vE6LwniB3PqD72R0Q==", + "peer": true, "requires": { "@libsql/core": "^0.14.0", "@libsql/hrana-client": "^0.7.0", @@ -3453,6 +3456,7 @@ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", "dev": true, + "peer": true, "requires": { "@esbuild/aix-ppc64": "0.19.12", "@esbuild/android-arm": "0.19.12", From c03a6a6dabdea73931bba07f129efa295955eb32 Mon Sep 17 00:00:00 2001 From: DiegoDev-7 Date: Sat, 20 Jun 2026 20:24:56 -0500 Subject: [PATCH 2/2] New file .yml --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..5faeabf296 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: ci + +on: + pull_request: + branches: [main] + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v6 + + - name: Set up Node + uses: actions/setup-node@v5 + with: + node-version: 22 + + - name: Force Failure + run: (exit 1) \ No newline at end of file