We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4260bb1 commit b9a0ce1Copy full SHA for b9a0ce1
.github/workflows/ci.yaml
@@ -38,6 +38,7 @@ jobs:
38
39
test:
40
runs-on: ubuntu-latest
41
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
42
43
steps:
44
- name: ⬇️ Check out code
@@ -52,19 +53,12 @@ jobs:
52
53
node-version: 20.x
54
cache: yarn
55
- - name: 📦 Install deps, build, pack
56
+ - name: 📦 Install deps, build
57
run: |
58
yarn install --frozen-lockfile
59
yarn build
- yarn pack --out %s-%v.tgz
60
env:
61
CI: true
62
63
- - name: 📤 Upload package artifact
64
- uses: actions/upload-artifact@v4
65
- with:
66
- name: strapi-plugin-imagekit-package
67
- path: strapi-plugin-imagekit-*.tgz
68
-
69
- name: 🧪 Run tests
70
run: yarn test:unit:ci
0 commit comments