Skip to content

Commit de6c542

Browse files
committed
cleanup
1 parent 9680065 commit de6c542

8 files changed

+5
-12
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,8 @@ jobs:
3535
restore-keys: |
3636
${{ runner.os }}-yarn-
3737
38-
- name: Use node_modules cache
39-
id: node-modules-cache
40-
uses: actions/cache@v3
41-
with:
42-
path: node_modules
43-
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
44-
4538
- name: Install Dependencies
46-
if: |
47-
steps.yarn-cache.outputs.cache-hit != 'true' ||
48-
steps.node-modules-cache.outputs.cache-hit != 'true'
49-
run: yarn install --prefer-offline --frozen-lockfile --non-interactive --silent
39+
run: yarn install --frozen-lockfile --non-interactive --silent
5040

5141
- name: TypeScript
5242
run: yarn run type-check
@@ -60,6 +50,9 @@ jobs:
6050

6151
- name: Unit Tests
6252
run: TZ=Europe/London yarn run test --coverage
53+
env:
54+
TZ: Europe/London
55+
HEADLESS: true
6356

6457
- name: Build
6558
run: yarn build && yarn bundle

src/panel/__image_snapshots__/TimelineDuration - Alive

Whitespace-only changes.
Binary file not shown.

src/panel/__image_snapshots__/TimelineDuration - Network

Whitespace-only changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.

src/setupTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ declare const global: {
5555
// Aim to render fonts consistently between invocations
5656
const args = ["--font-render-hinting=none"];
5757
global.browser = await puppeteer.launch({
58-
args: process.env.USER === "root" ? [...args, "--no-sandbox"] : args,
58+
args: [...args, "--no-sandbox"],
5959
headless: process.env.HEADLESS !== "false",
6060
});
6161
});

0 commit comments

Comments
 (0)