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 a545729 commit 2d8b12bCopy full SHA for 2d8b12b
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "playwright-last-failed",
3
"description": "GitHub Actions TypeScript template that runs last failed Playwright tests using Currents cache",
4
- "version": "1.1.3",
+ "version": "1.1.4",
5
"author": "",
6
"private": true,
7
"homepage": "https://github.com/actions/typescript-action",
src/index.ts
@@ -43,7 +43,8 @@ async function run(): Promise<void> {
43
try {
44
const inputs = getInputs()
45
46
- await exec.exec('npm install -g @currents/cmd')
+ await exec.exec('npm install -g @currents/cmd');
47
+ await exec.exec('npm list brace-expansion');
48
49
const useAPI = inputs.useAPI || inputs.or8n
50
core.saveState('or8n', useAPI)
0 commit comments