You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3
+
4
+
name: CI
5
+
6
+
on:
7
+
push:
8
+
branches: [ "master" ]
9
+
pull_request:
10
+
branches: [ "master" ]
11
+
12
+
jobs:
13
+
build:
14
+
15
+
runs-on: ubuntu-latest
16
+
17
+
strategy:
18
+
matrix:
19
+
node-version: [18.x, 20.x, 22.x]
20
+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ For http(s) resources wait-on will check that the requests are returning 2XX (su
8
8
9
9
wait-on can also be used in reverse mode which waits for resources to NOT be available. This is useful in waiting for services to shutdown before continuing. (Thanks @skarbovskiy for adding this feature)
0 commit comments