Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Working #12

Merged
merged 42 commits into from
May 19, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
c1f5b90
Added info on #1
Apr 26, 2022
6bd4ecc
Issue #5 work
Apr 28, 2022
ac840ab
Merged in master
Apr 28, 2022
e605bd4
Turns out I own the domain
Apr 30, 2022
7625031
Resolves #8
May 4, 2022
236d9a0
Merge branch 'master' into working
May 4, 2022
26be895
Fixes #10. Added tests. Bumped up the versions of everything for some…
May 17, 2022
eb4dff9
Missing eslint?
May 17, 2022
e1c71c3
Bump version. Add more actions
May 17, 2022
9824624
Build only on pr. Build just the latest
May 17, 2022
07b1045
Wait for the input before firing a new location
May 17, 2022
05c037b
More tests
May 17, 2022
1754934
Release code testing
May 19, 2022
bc27d84
Release code testing
May 19, 2022
93ee7ea
Release code testing
May 19, 2022
edc70d9
Release code testing
May 19, 2022
e838fc9
Release code testing to much indent?
May 19, 2022
be269ff
Release relative path
May 19, 2022
9253ed5
Release relative path
May 19, 2022
24de379
Im an expert at these sorts of things
May 19, 2022
992ef91
just not a very good expert
May 19, 2022
fb5f70e
or I am just a really good random number generator
May 19, 2022
2acd6f5
Why is it failing just in github
May 19, 2022
7e587be
To annoying to pass in the whole working directory between jobs
May 19, 2022
b9c2e2d
Fix the test
May 19, 2022
5ca5bd5
Fix the test
May 19, 2022
fb43a0d
Getting closer
FoxUSA May 19, 2022
14670ce
I tire of the search tests random failures only on actions
FoxUSA May 19, 2022
d57351a
Back to two files
FoxUSA May 19, 2022
761f9bb
Back to two files
FoxUSA May 19, 2022
c1000c7
Back to two files
FoxUSA May 19, 2022
88be298
Correct variable syntax
FoxUSA May 19, 2022
9503919
release files artifact
FoxUSA May 19, 2022
c193f3e
helps if you save
FoxUSA May 19, 2022
849c3c7
Testing things
FoxUSA May 19, 2022
701cbd5
Testing things
FoxUSA May 19, 2022
807dd30
Testing things
FoxUSA May 19, 2022
667e432
Testing things
FoxUSA May 19, 2022
fbe0f9c
Testing things
FoxUSA May 19, 2022
180d21f
Testing things
FoxUSA May 19, 2022
5160e37
Auto create release
FoxUSA May 19, 2022
2fbf657
Hopefully this works
FoxUSA May 19, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes #10. Added tests. Bumped up the versions of everything for some…
… reason I can't remember
  • Loading branch information
Jake committed May 17, 2022
commit 26be895aae0adb92168a89b7fb6bb485e2ebdd46
5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ module.exports = {
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-return-assign': 'off'
'no-return-assign': 'off',
'vue/multi-word-component-names': 'off'
},
parserOptions: {
parser: 'babel-eslint'
'ecmaVersion': 2020
}
}
9 changes: 7 additions & 2 deletions .github/workflows/auto-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ jobs:
- name: Install StoreDown dependencies
run: npm ci

- name: Run linter
run: npm run lint

- name: Run e2e tests
run: npx vue-cli-service test:e2e --headless

- name: Build StoreDown artifacts
run: npm run build

- name: Run lint test
run: npm run lint

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ node_modules

/tests/e2e/reports/
selenium-debug.log
screenshots
videos

# local env files
.env.local
Expand Down
Loading