Skip to content

Commit 637ee3b

Browse files
Always run install, fix lint (#207)
Co-authored-by: James Daniels <[email protected]>
1 parent ed5bddd commit 637ee3b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
restore-keys: |
4040
${{ runner.os }}-20-
4141
- name: Install deps
42-
if: steps.node_modules_cache.outputs.cache-hit != 'true'
4342
run: npm ci
4443
- name: Build
4544
run: npm run build

packages/@apphosting/adapter-angular/src/simple-server/server.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const __dirname = path.dirname(__filename);
1010
const oneYear = 31_536_000_000;
1111

1212
app.use(express.static(path.join(__dirname, "..", "browser"), { maxAge: oneYear }));
13-
app.get("*", function (request, response) {
13+
app.get("*", (request, response) => {
1414
response.sendFile(path.join(__dirname, "..", "browser", "index.html"));
1515
});
1616
var port = process.env.PORT || 3000;

0 commit comments

Comments
 (0)