We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b7d03 commit a25aae4Copy full SHA for a25aae4
2 files changed
.github/workflows/ci.yaml
@@ -25,6 +25,7 @@ jobs:
25
- name: 📦 Install deps, build, pack
26
run: |
27
yarn install --frozen-lockfile
28
+ yarn lint
29
yarn package
30
env:
31
CI: true
@@ -33,4 +34,4 @@ jobs:
33
34
uses: actions/upload-artifact@v4
35
with:
36
name: imagekit-editor-package
- path: builds/imagekit-editor-*.tgz
37
+ path: builds/imagekit-editor-*.tgz
.github/workflows/node-publish.yml
@@ -22,12 +22,14 @@ jobs:
22
23
node-version: 20.x
24
cache: yarn
- registry-url: 'https://registry.npmjs.org'
+ registry-url: "https://registry.npmjs.org"
- name: Build and Publish
32
+
yarn build
npm whoami
@@ -48,4 +50,4 @@ jobs:
48
50
49
51
52
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- CI: true
53
+ CI: true
0 commit comments