Skip to content

Commit

Permalink
release: v3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Sep 27, 2024
1 parent ddac0c9 commit 1b8929b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 22 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,15 @@ jobs:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: '18.x'
- run: |
npm install -g @liriliri/lsla
npm i
npm run ci
- run: |
npm install -g codecov
codecov --disable=gcov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
12 changes: 4 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Build eruda
run: |
- run: |
npm i -g @liriliri/lsla
npm i
npm run build
- name: Publish package on NPM
working-directory: dist
- working-directory: dist
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.4.0 (27 Sep 2024)

* feat: support shadow dom [#158](https://github.com/liriliri/eruda/issues/158)
* fix: quirks mode table rendering [#459](https://github.com/liriliri/eruda/issues/459)

## 3.3.0 (9 Sep 2024)

* feat: add vue devtools plugin
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eruda",
"version": "3.3.0",
"version": "3.4.0",
"description": "Console for Mobile Browsers",
"main": "eruda.js",
"browserslist": [
Expand Down

0 comments on commit 1b8929b

Please sign in to comment.