Skip to content

Commit

Permalink
chore: parse-import-specifiers: v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Mar 6, 2024
1 parent 56476ab commit a96a873
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,26 @@ jobs:
strategy:
matrix:
node-version:
- 16.x
- 18.x
- 20.x
- 21.x
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Redrun
run: npm i redrun -g
run: bun i redrun -g --no-save
- name: Install
run: npm install
run: bun i --no-save
- name: Lint
run: redrun fix:lint
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install Rust
run: rustup update
- uses: actions/cache@v3
with:
path: |
Expand All @@ -43,11 +45,13 @@ jobs:
run: typos --write-changes
- name: Commit fixes
uses: EndBug/add-and-commit@v9
continue-on-error: true
with:
message: "chore: ${{ env.NAME }}: actions: lint ☘️"
- name: Coverage
run: redrun coverage report
- name: Coveralls
uses: coverallsapp/github-action@v2
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2024.03.06, v1.0.3

fix:
- 4f18e3f homepage

feature:
- 6991ac2 parse-import-specifiers: c8 v9.1.0
- b1f34e2 parse-import-specifiers: eslint-plugin-putout v22.4.0
- 30cdb89 parse-import-specifiers: madrun v10.0.1
- 1926c77 parse-import-specifiers: putout v35.6.0
- 38b607c parse-import-specifiers: supertape v10.3.0
- bfb6bd5 package: nodemon v3.0.1
- 3da6518 package: eslint-plugin-putout v18.1.0
- facbfad package: putout v30.3.0
- d5c5264 package: c8 v8.0.0

2023.06.07, v1.0.2

feature:
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": "parse-import-specifiers",
"version": "1.0.2",
"version": "1.0.3",
"type": "commonjs",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "Simplest possible way to parse ImportSpecifiers",
Expand Down

0 comments on commit a96a873

Please sign in to comment.