Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/babel/traverse-7.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps authored Dec 11, 2023
2 parents 3bdb62f + a03b36a commit cfac4dc
Show file tree
Hide file tree
Showing 8 changed files with 227 additions and 2,614 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
private_key: ${{ secrets.FLIPT_RELEASE_BOT_APP_PEM }}
installation_id: ${{ secrets.FLIPT_RELEASE_BOT_INSTALLATION_ID }}

- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v4
with:
token: ${{ steps.generate_token.outputs.token }}
command: manifest
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: 'build-test'
on:
workflow_dispatch:
pull_request:
push:
branches:
Expand Down
2,626 changes: 97 additions & 2,529 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

164 changes: 98 additions & 66 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.6.0",
"@types/node": "^20.10.4",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.49.0",
"eslint": "^8.55.0",
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.7.0",
Expand Down
7 changes: 5 additions & 2 deletions src/lib/exec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as aexec from '@actions/exec';
import * as core from '@actions/core';

export interface ExecResult {
success: boolean;
Expand All @@ -9,14 +10,16 @@ export interface ExecResult {
export const exec = async (
command: string,
args: string[] = [],
silent?: boolean,
opts = {},
): Promise<ExecResult> => {
const eopts: aexec.ExecOptions = {
silent: silent,
silent: false,
ignoreReturnCode: true,
...opts,
};

core.debug(`running ${command} ${args.join(' ')}, opts: ${JSON.stringify(eopts)}`);

const { exitCode, stdout, stderr } = await aexec.getExecOutput(
command,
args,
Expand Down
Loading

0 comments on commit cfac4dc

Please sign in to comment.