Skip to content

Commit 97fa726

Browse files
Upgrade versions on GH actions config file
1 parent ef3dcac commit 97fa726

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@ jobs:
99
build:
1010
name: 'Run tests'
1111
runs-on: ubuntu-latest
12-
container: node:9.4.0
12+
container: node:23.7.0
1313
defaults:
1414
run:
1515
working-directory: ./vpos/checkout/javascript
1616

1717
timeout-minutes: 10
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- run: yarn install --frozen-lockfile
2222
- run: yarn test
23-

vpos/checkout/javascript/src/specs/bancard-checkout.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ describe('Bancard', () => {
195195
afterEach(() => { instance.destroy(); });
196196

197197
test('It throws exception', () => {
198-
expect(() => { instance.Checkout.createForm('nonexistentDiv', '1234'); })
198+
expect(() => { instance.Checkout.createForm('nonexistentDiv', '12345'); })
199199
.toThrowError(exceptions.DivDoesNotExist);
200200
});
201201
});

0 commit comments

Comments
 (0)