chore(ci): Fix CI (#8267)

This commit is contained in:
Donny/강동윤 2023-11-12 02:25:36 +09:00 committed by GitHub
parent c8379c27a0
commit ee0c12e4e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 9 deletions

View File

@ -851,7 +851,8 @@ jobs:
- cargo-test
- node-test
- integration-test
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/master' }}
if: >-
${{ always() && !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest
name: Done
steps:

View File

@ -221,7 +221,6 @@ jobs:
- host: windows-latest
target: x86_64-pc-windows-msvc
node:
- "14"
- "16"
- "18"
runs-on: ${{ matrix.settings.host }}
@ -255,7 +254,6 @@ jobs:
fail-fast: false
matrix:
node:
- "14"
- "16"
- "18"
runs-on: ubuntu-latest
@ -294,7 +292,6 @@ jobs:
fail-fast: false
matrix:
node:
- "14"
- "16"
- "18"
runs-on: ubuntu-latest
@ -366,7 +363,6 @@ jobs:
fail-fast: false
matrix:
node:
- "14"
- "16"
- "18"
runs-on: ubuntu-latest

View File

@ -188,7 +188,6 @@ jobs:
- host: windows-latest
target: x86_64-pc-windows-msvc
node:
- "14"
- "16"
- "18"
runs-on: ${{ matrix.settings.host }}
@ -223,7 +222,6 @@ jobs:
fail-fast: false
matrix:
node:
- "14"
- "16"
- "18"
runs-on: ubuntu-latest
@ -260,7 +258,6 @@ jobs:
fail-fast: false
matrix:
node:
- "14"
- "16"
- "18"
runs-on: ubuntu-latest
@ -330,7 +327,6 @@ jobs:
fail-fast: false
matrix:
node:
- "14"
- "16"
- "18"
runs-on: ubuntu-latest

View File

@ -2,3 +2,5 @@
var type;
var string;
var Foo;
type;
Foo = string;

View File

@ -2,3 +2,8 @@
var type;
var string;
var Foo;
var container;
(function(container) {
type;
Foo = string;
})(container || (container = {}));

View File

@ -1 +1,3 @@
//// [asiPreventsParsingAsTypeAlias02.ts]
var container;
container || (container = {});