Skip to content

Commit 6cc9ddc

Browse files
committed
release from this branch
1 parent 48503bc commit 6cc9ddc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci-cd.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ name: "CI/CD: Continuous integration and continuous deployment"
99
tags:
1010
- "v*"
1111
pull_request:
12-
merge_group:
1312

1413
jobs:
1514
build-check-test-push:

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ yarn-error.log
88
/templates
99
graphql.config.json
1010
output/*
11-
.env
12-
.env.local
11+
.env*
12+
!.env.template
1313
secrets
1414
/test/results/*

src/components/timetable/intervalMerging.test.mjs renamed to test/timetable/intervalMerging.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'node:test';
22
import assert from 'node:assert';
3-
import { normalizeDepartures } from './intervalsNormalizer.mjs';
3+
import { normalizeDepartures } from '../../src/components/timetable/intervalsNormalizer.mjs';
44

55
function assertNormalized(input, expected) {
66
const output = normalizeDepartures(input);

0 commit comments

Comments
 (0)