Skip to content

Commit e8b997d

Browse files
committed
fix syntax
1 parent 25f29ac commit e8b997d

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/ci.yml

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This workflow performs tests in Java.
2-
name: Library Java tests
2+
name: ESDK JavaScript CI Tests
33

44
on: [push, pull_request]
55

@@ -24,37 +24,37 @@ jobs:
2424
env:
2525
NODE_OPTIONS: "--max-old-space-size=4096"
2626
run: |
27-
- npm ci --unsafe-perm
28-
- npm run build
29-
- npm run coverage-node
27+
npm ci --unsafe-perm
28+
npm run build
29+
npm run coverage-node
3030
- name: Test compliance
3131
if: ${{ matrix.node == 18 }}
3232
env:
3333
NODE_OPTIONS: "--max-old-space-size=4096"
3434
run: |
35-
- npm ci --unsafe-perm
36-
- npm run lint
37-
- npm run test_conditions
35+
npm ci --unsafe-perm
36+
npm run lint
37+
npm run test_conditions
3838
- name: Run Test Vectors Node ${{matrix.node}}
3939
env:
4040
NODE_OPTIONS: "--max-old-space-size=4096"
4141
NPM_CONFIG_UNSAFE_PERM: true
4242
PUBLISH_LOCAL: true
4343
run: |
44-
- npm ci --unsafe-perm
45-
- npm run build
46-
- npm run verdaccio-publish
47-
- npm run verdaccio-node-decrypt
48-
- npm run verdaccio-node-encrypt
44+
npm ci --unsafe-perm
45+
npm run build
46+
npm run verdaccio-publish
47+
npm run verdaccio-node-decrypt
48+
npm run verdaccio-node-encrypt
4949
- name: Run Test Vectors Browser Node 18
5050
if: ${{ matrix.node == 18 }}
5151
env:
5252
NODE_OPTIONS: "--max-old-space-size=4096"
5353
NPM_CONFIG_UNSAFE_PERM: true
5454
PUBLISH_LOCAL: true
5555
run: |
56-
- npm ci --unsafe-perm
57-
- npm run build
58-
- npm run verdaccio-publish
59-
- npm run verdaccio-browser-decrypt
60-
- npm run verdaccio-browser-encrypt
56+
npm ci --unsafe-perm
57+
npm run build
58+
npm run verdaccio-publish
59+
npm run verdaccio-browser-decrypt
60+
npm run verdaccio-browser-encrypt

0 commit comments

Comments
 (0)