Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into ci-publish-firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
HarlemSquirrel committed May 17, 2024
2 parents 0b66e58 + 471cd3b commit 0c024a6
Show file tree
Hide file tree
Showing 13 changed files with 14,836 additions and 4,059 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
}
},
"jest": { "version": 27 }
},
"rules": {
"semi": ["error", "always"],
Expand Down
72 changes: 72 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Verify
on:
push:
pull_request:
workflow_dispatch:

jobs:
build-chrome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install npm modules
run: npm ci
- name: Build
run: npm run build-chrome
build-edge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install npm modules
run: npm ci
- name: Build
run: npm run build-edge
build-firefox:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install npm modules
run: npm ci
- name: Build
run: npm run build-firefox
- name: Lint
run: npm run lint-firefox

build-safari:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install npm modules
run: npm ci
- name: Build
run: npm run build-safari
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install npm modules
run: npm ci
- name: ESLint
run: npm run eslint
- name: Prettier
run: npm run prettier
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,3 @@ with several modifications for KeeWeb listed [here](docs/keeweb-connect-protocol
## License

[MIT](https://github.com/keeweb/keeweb-connect/blob/master/LICENSE)

Loading

0 comments on commit 0c024a6

Please sign in to comment.