Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
xusd320 committed Jul 15, 2024
2 parents 672d0e5 + 3bfb0ae commit cda1eed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: npm run config set supportedArchitectures.cpu "ia32"
shell: bash
- name: Install dependencies
run: npm run install
run: npm install
- name: Setup node x86
uses: actions/setup-node@v4
if: matrix.settings.target == 'i686-pc-windows-msvc'
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
whoami
env
freebsd-version
npm run install
npm install
npm run build
npm run test
rm -rf node_modules
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
cache: npm run
architecture: x64
- name: Install dependencies
run: npm run install
run: npm install
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
node-version: ${{ matrix.node }}
cache: npm run
- name: Install dependencies
run: npm run install
run: npm install
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
- name: Install dependencies
run: |
npm run config set supportedArchitectures.libc "musl"
npm run install
npm install
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
run: |
npm run config set supportedArchitectures.cpu "arm64"
npm run config set supportedArchitectures.libc "glibc"
npm run install
npm install
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
run: |
npm run config set supportedArchitectures.cpu "arm64"
npm run config set supportedArchitectures.libc "musl"
npm run install
npm install
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:
- name: Install dependencies
run: |
npm run config set supportedArchitectures.cpu "arm"
npm run install
npm install
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:
node-version: 20
cache: npm run
- name: Install dependencies
run: npm run install
run: npm install
- name: Download macOS x64 artifact
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
node-version: 20
cache: npm run
- name: Install dependencies
run: npm run install
run: npm install
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion __test__/index.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function formatHtml(html) {
return beautify.html(html, { preserve_newlines: false });
}

test("should not change html structure", (t) => {
test("should not change the original html structure", (t) => {
const jqueryHtml = fs.readFileSync(path.resolve(__dirname, "jquery.html"), {
encoding: "utf8",
});
Expand Down

0 comments on commit cda1eed

Please sign in to comment.