Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nichoth committed Sep 27, 2023
1 parent a9a1603 commit e06bb82
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: create env file
run: |
touch .env
echo "NPM_TOKEN=${{ secrets.NPM_TOKEN }}" >> .env
- name: npm install, build
run: |
npm install
export $(cat .env | xargs) && npm install
npm run build --if-present
npm run lint
env:
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@
"dependencies": {
"@noble/hashes": "^1.3.0",
"@oddjs/odd": "^0.37.1",
"@ssc-hermes/message": "^0.4.0",
"@ssc-hermes/message": "^0.4.9",
"@ssc-hermes/util": "^0.7.0",
"json-canon": "^1.0.1",
"uint8arrays": "^4.0.3"
},
"devDependencies": {
"@ssc-hermes/wnfs-post": "^0.23.0",
"@typescript-eslint/parser": "^5.55.0",
"esbuild": "^0.15.18",
"standardx": "^7.0.0",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"listFiles": true,
"module": "ES2022",
"module": "NodeNext",
"target": "ES2022",
"moduleResolution": "node16",
"moduleResolution": "NodeNext",
"esModuleInterop": false,
"lib": ["ES2021", "DOM", "WebWorker"],
"allowJs": false,
Expand Down

0 comments on commit e06bb82

Please sign in to comment.