Skip to content
This repository was archived by the owner on Aug 21, 2026. It is now read-only.
Merged
3 changes: 2 additions & 1 deletion .eslintrc
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,6 +6,7 @@
"rules": {
"unicorn/prefer-module": "off",
"unicorn/no-abusive-eslint-disable": "off",
"@typescript-eslint/no-use-before-define": "off"
"@typescript-eslint/no-use-before-define": "off",
"node/no-missing-import": "off"
}
}
10 changes: 9 additions & 1 deletion .github/workflows/node.js.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,4 +25,12 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
# - run: npm test
- run: npm i -g @contentstack/cli
- run: csdx config:set:region ${{secrets.REGION}}
- run: csdx auth:tokens:add -a ${{ secrets.TOKEN_ALIAS }} --delivery -k ${{ secrets.APIKEY }} --token ${{ secrets.DELIVERYKEY }} -e ${{ secrets.ENVIRONMENT }}
- run: npm run prepack
- run: csdx plugins:link
- run: npm test
env:
TOKEN_ALIAS: ${{ secrets.TOKEN_ALIAS }}
- run: csdx plugins:unlink
Loading