Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci
on:
pull_request:
workflow_dispatch:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Actionlint
uses: eifinger/actionlint-action@23c85443d840cd73bbecb9cddfc933cc21649a38 # v1.9.1
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm install
- run: npm run all
- name: Make sure no changes from linters are detected
run: |
git diff --exit-code || (echo "::error::Please run 'npm run all' to fix the issues" && exit 1)
46 changes: 0 additions & 46 deletions .github/workflows/demo.yml

This file was deleted.

2 changes: 1 addition & 1 deletion dist/cleanup.js
Original file line number Diff line number Diff line change
Expand Up @@ -3658,7 +3658,7 @@ module.exports = require("util");
/******/
/************************************************************************/
var __webpack_exports__ = {};
const { execFileSync } = __nccwpck_require__(421);
const { execSync, execFileSync } = __nccwpck_require__(421);
const { keyFilePrefix } = __nccwpck_require__(334);
const { gitCmd, homePath, sshAgentCmd } = __nccwpck_require__(644);
const { alterGitConfigWithRetry } = __nccwpck_require__(561);
Expand Down
Loading