File tree Expand file tree Collapse file tree 6 files changed +647
-99
lines changed Expand file tree Collapse file tree 6 files changed +647
-99
lines changed Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : ' npm' # See documentation for possible values
9
+ directory : ' /' # Location of package manifests
10
+ target-branch : ' dev'
11
+ schedule :
12
+ interval : ' weekly'
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ concurrency:
16
16
jobs :
17
17
build :
18
18
runs-on : ubuntu-latest
19
-
19
+
20
20
steps :
21
- - name : Checkout 🛎️
22
- uses : actions/checkout@v3
21
+ - name : Checkout Repo
22
+ uses : actions/checkout@v4
23
23
24
- - name : Build
24
+ - name : Build App
25
25
run : |
26
26
npm ci
27
27
npm run build
Original file line number Diff line number Diff line change
1
+ name : Test Build
2
+ run-name : Test Build
3
+
4
+ on :
5
+ pull_request :
6
+ types : [opened, synchronize]
7
+
8
+ concurrency :
9
+ group : " testbuild"
10
+ cancel-in-progress : true
11
+
12
+ jobs :
13
+ Build :
14
+ runs-on : ubuntu-latest
15
+
16
+ permissions :
17
+ pull-requests : write
18
+ contents : write
19
+
20
+ steps :
21
+ - name : Checkout Repo
22
+ uses : actions/checkout@v4
23
+
24
+ - name : Test Build
25
+ uses : Lenni009/test-build-vite-action@main
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ <h1 class="title">Am I in the Fade?</h1>
35
35
36
36
< div class ="actions ">
37
37
< input role ="button " type ="submit " value ="Check " id ="submitBtn ">
38
- < input role =" button " type ="reset " value ="Reset Glyphs " id ="resetBtn ">
38
+ < input role =" button " type ="reset " value ="Reset Input " id ="resetBtn ">
39
39
</ div >
40
40
< p class =" output ">
41
41
< output id ="output "> </ output >
You can’t perform that action at this time.
0 commit comments