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

Devel oskar #126

Merged
merged 14 commits into from
Dec 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 18.x
- name: Use Node.js 20.x
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: 20.x
cache: "npm"
cache-dependency-path: |
server/package-lock.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/databaseConsistency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
- name: Use Node.js 20.x
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: 20.x
- name: Install pg-diff
run: |
npm install -g pg-diff-cli
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
- name: Use Node.js 20.x
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: 20.x
cache: "npm"
cache-dependency-path: |
server/package-lock.json
Expand Down Expand Up @@ -97,6 +97,8 @@ jobs:
sha: context.sha,
ref: "refs/tags/deployed"
})
- name: Wait before validating the update
run: sleep 10
- name: Sanity check of tac-with-bug
uses: fjogeleit/http-request-action@master
with:
Expand Down
1 change: 1 addition & 0 deletions client/.eslintrc.js → client/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module.exports = {
'sonarjs/no-duplicated-branches': 0,
'vue/attribute-hyphenation': 0,
'vue/v-on-event-hyphenation': 0,
'no-extra-semi': 0, // Conflict with prettier
//'vue/max-attributes-per-line': 0, // Conflict with prettier
//'vue/singleline-html-element-content-newline': 0, // Conflict with prettier
//'vue/multiline-html-element-content-newline': 0, // Conflict with prettier
Expand Down
Loading
Loading