Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hrai committed Oct 13, 2024
1 parent 435edf4 commit c6d86b7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 18 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,22 @@ name: Node CI
on: [push, pull_request]
jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
version: ${{ steps.daily-version.outputs.version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 20
- run: yarn install
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- firefox
- chrome
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: yarn install --frozen-lockfile

- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- chrome
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: yarn install
- run: yarn build
- name: Update extension’s meta
Expand Down
9 changes: 7 additions & 2 deletions distribution/manifest_v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,10 @@
"default_title": "Auto-capitalise sentence",
"default_popup": "popup/settings.html"
},
"content_security_policy": {}
}
"content_security_policy": {},
"browser_specific_settings": {
"gecko": {
"id": "680e06ed-65ed-4e11-a9c0-0e6f80b9a347"
}
}
}

0 comments on commit c6d86b7

Please sign in to comment.