Skip to content

Commit 45d50bc

Browse files
committed
Update on "[compiler] Fixture for function outlining"
Fixture demonstrating a case where we can "outline" a function expression. [ghstack-poisoned]
2 parents 7744553 + 2d29759 commit 45d50bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1984
-497
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
- checkout
9999
- setup_node_modules
100-
- run: yarn build
100+
- run: yarn build --ci=circleci
101101
- persist_to_workspace:
102102
root: .
103103
paths:

.github/workflows/compiler_playground.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ on:
55
branches: [main]
66
pull_request:
77
paths:
8-
- "compiler/**"
8+
- compiler/**
99
- .github/workflows/compiler-playground.yml
1010

11+
env:
12+
TZ: /usr/share/zoneinfo/America/Los_Angeles
13+
1114
defaults:
1215
run:
1316
working-directory: compiler
@@ -20,8 +23,8 @@ jobs:
2023
- uses: actions/checkout@v4
2124
- uses: actions/setup-node@v4
2225
with:
23-
node-version: 18.x
24-
cache: "yarn"
26+
node-version: 18.20.1
27+
cache: yarn
2528
cache-dependency-path: compiler/yarn.lock
2629
- name: Restore cached node_modules
2730
uses: actions/cache@v4

.github/workflows/compiler_rust.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818
env:
1919
CARGO_TERM_COLOR: always
2020
RUSTFLAGS: -Dwarnings
21+
TZ: /usr/share/zoneinfo/America/Los_Angeles
2122

2223
defaults:
2324
run:

.github/workflows/compiler_typescript.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ on:
55
branches: [main]
66
pull_request:
77
paths:
8-
- "compiler/**"
8+
- compiler/**
99
- .github/workflows/compiler-typescript.yml
1010

11+
env:
12+
TZ: /usr/share/zoneinfo/America/Los_Angeles
13+
1114
defaults:
1215
run:
1316
working-directory: compiler
@@ -31,8 +34,8 @@ jobs:
3134
- uses: actions/checkout@v4
3235
- uses: actions/setup-node@v4
3336
with:
34-
node-version: 18.x
35-
cache: "yarn"
37+
node-version: 18.20.1
38+
cache: yarn
3639
cache-dependency-path: compiler/yarn.lock
3740
- name: Restore cached node_modules
3841
uses: actions/cache@v4
@@ -50,8 +53,8 @@ jobs:
5053
- uses: actions/checkout@v4
5154
- uses: actions/setup-node@v4
5255
with:
53-
node-version: 18.x
54-
cache: "yarn"
56+
node-version: 18.20.1
57+
cache: yarn
5558
cache-dependency-path: compiler/yarn.lock
5659
- name: Restore cached node_modules
5760
uses: actions/cache@v4
@@ -74,8 +77,8 @@ jobs:
7477
- uses: actions/checkout@v4
7578
- uses: actions/setup-node@v4
7679
with:
77-
node-version: 18.x
78-
cache: "yarn"
80+
node-version: 18.20.1
81+
cache: yarn
7982
cache-dependency-path: compiler/yarn.lock
8083
- name: Restore cached node_modules
8184
uses: actions/cache@v4

.github/workflows/devtools_check_repro.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
issue_comment:
66
types: [created, edited]
77

8+
env:
9+
TZ: /usr/share/zoneinfo/America/Los_Angeles
10+
811
jobs:
912
check-repro:
1013
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)