diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..d7231da99d --- /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@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 22 + + - name: Force Failure + run: (exit 1) \ No newline at end of file diff --git a/README.md b/README.md index e58be39d95..e2a8deb7e3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # learn-cicd-typescript-starter (Notely) - +yobmon This repo contains the typescript starter code for the "Notely" application for the "Learn CICD" course on [Boot.dev](https://boot.dev). ## Local Development 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", diff --git a/package.json b/package.json index bf6e45393d..c9af1c7f8c 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "@types/node": "^22.9.0", "drizzle-kit": "^0.28.1", "globals": "^15.12.0", - "tsx": "^4.19.2", + "tsx": "^4.19.2", "typescript": "^5.6.3" }, "dependencies": {