Skip to content

Commit 38160e1

Browse files
authored
Merge pull request #2 from Lenni009/dev
wording
2 parents e3c6926 + e07dd06 commit 38160e1

File tree

6 files changed

+647
-99
lines changed

6 files changed

+647
-99
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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'

.github/workflows/build-deploy.yml renamed to .github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ concurrency:
1616
jobs:
1717
build:
1818
runs-on: ubuntu-latest
19-
19+
2020
steps:
21-
- name: Checkout 🛎️
22-
uses: actions/checkout@v3
21+
- name: Checkout Repo
22+
uses: actions/checkout@v4
2323

24-
- name: Build
24+
- name: Build App
2525
run: |
2626
npm ci
2727
npm run build

.github/workflows/test-build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h1 class="title">Am I in the Fade?</h1>
3535

3636
<div class="actions">
3737
<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">
3939
</div>
4040
<p class=" output">
4141
<output id="output"></output>

0 commit comments

Comments
 (0)