Skip to content

Commit c4de33d

Browse files
Release v1.2.4 (#20)
2 parents 56a06c6 + 23723b7 commit c4de33d

File tree

4 files changed

+405
-418
lines changed

4 files changed

+405
-418
lines changed

.github/workflows/main pull request tests.yml .github/workflows/testing - main pull request.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests on staging on "main" branch repo pull request
1+
name: Testing on "main" branch repo opened pull request push
22

33
on:
44
pull_request_target:
@@ -14,10 +14,13 @@ on:
1414
- '**/*.mjs'
1515
- '**/*.json'
1616
- '**/pnpm-lock.yaml'
17-
- '!.github/**'
1817
- '!**/package.json'
18+
- '!.github/**'
19+
- '!**/.gitignore'
1920
- '!**/.eslintrc.json'
2021
- '!**/.prettierrc.json'
22+
- '!**/*.md'
23+
- '!**/LICENSE'
2124

2225
jobs:
2326
test:
@@ -31,8 +34,6 @@ jobs:
3134
steps:
3235
- name: Checkout
3336
uses: actions/checkout@main
34-
with:
35-
ref: ${{ github.event.pull_request.head.sha }}
3637
- name: Use latest pnpm
3738
uses: pnpm/action-setup@master
3839
- name: Use Node.js ${{ matrix.node-version }}

package.json

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "secrets-vars-to-env-file-action",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description": "Export GitHub secrets & vars to environment variables & specified file",
55
"type": "module",
66
"main": "build/index.js",
77
"scripts": {
8-
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --watchAll",
9-
"test:e2e": "node --experimental-vm-modules node_modules/jest/bin/jest --testPathPattern=test/*e2e.test.ts",
8+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --testPathIgnorePatterns test/e2e --watchAll",
9+
"test:e2e": "node --experimental-vm-modules node_modules/jest/bin/jest --testPathPattern='test/e2e/.*\\.test\\.ts'",
1010
"build": "tsc",
1111
"package": "ncc build --source-map --license licenses.txt",
1212
"prepare:release": "rimraf build && pnpm run build && pnpm run package",
@@ -16,23 +16,22 @@
1616
},
1717
"author": "Jakub Cieślik",
1818
"license": "MIT",
19-
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
19+
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
2020
"dependencies": {
2121
"@actions/core": "^1.10.1"
2222
},
2323
"devDependencies": {
2424
"@jest/globals": "^29.7.0",
25-
"@types/jest": "^29.5.12",
26-
"@types/node": "^20.14.10",
27-
"@typescript-eslint/eslint-plugin": "^7.16.1",
28-
"@typescript-eslint/parser": "^7.16.1",
25+
"@types/node": "^20.16.5",
26+
"@typescript-eslint/eslint-plugin": "^7.18.0",
27+
"@typescript-eslint/parser": "^7.18.0",
2928
"@vercel/ncc": "^0.38.1",
3029
"eslint": "8.57.0",
3130
"eslint-config-prettier": "^9.1.0",
3231
"jest": "^29.7.0",
3332
"prettier": "^3.3.3",
34-
"rimraf": "^5.0.9",
35-
"ts-jest": "^29.2.2",
36-
"typescript": "^5.5.3"
33+
"rimraf": "^5.0.10",
34+
"ts-jest": "^29.2.5",
35+
"typescript": "^5.6.2"
3736
}
3837
}

0 commit comments

Comments
 (0)