Skip to content

Commit

Permalink
fix(atomWithHash): default safeJSONParse (#22)
Browse files Browse the repository at this point in the history
* fix(atomWithHash): default safeJSONParse

* update workflow files

* update CHANGELOG

* update lockfile
  • Loading branch information
dai-shi authored Oct 15, 2023
1 parent cdc9069 commit fbaf0ea
Show file tree
Hide file tree
Showing 5 changed files with 1,424 additions and 1,358 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: DerYeger/pnpm-setup-action@master
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.2.0
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile
- run: npm test
- run: npm run compile
- run: |
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > .npmrc
npm publish
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: DerYeger/pnpm-setup-action@master
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.2.0
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile
- run: npm test
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## [Unreleased]
### Changed
- fix(atomWithHash): default safeJSONParse #22

## [0.5.1] - 2023-03-11
### Changed
Expand Down
Loading

0 comments on commit fbaf0ea

Please sign in to comment.