We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2cf3edc + 3162151 commit 25b9c5bCopy full SHA for 25b9c5b
2 files changed
.github/workflows/ci.yaml
@@ -0,0 +1,22 @@
1
+name :ci
2
+
3
+on:
4
+ pull_request:
5
+ branches:[main]
6
7
+jobs:
8
+ tests:
9
+ name:Tests
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ -name:check out code
14
+ uses: actions/checkout@v4
15
16
+ -name: Set up Node
17
+ uses: actions/setup-node@v4
18
+ with :
19
+ node-version: 22
20
21
+ -name: Force Failure
22
+ run: (exit 1)
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`.
23
24
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!
25
26
+luiz's version of Boot.dev's Notely app.
0 commit comments