Skip to content

Commit 2eb9413

Browse files
author
Manuela Paula Ritter
committed
fix actions
1 parent 3b8b3f1 commit 2eb9413

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/main.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
name: CI
44

5-
# Controls when the action will run.
5+
# Controls when the action will run.
66
on:
77
# Triggers the workflow on push or pull request events but only for the develop branch
88
push:
9-
branches: [ develop ]
9+
branches: [develop]
1010
pull_request:
11-
branches: [ develop ]
11+
branches: [develop]
1212

1313
# Allows you to run this workflow manually from the Actions tab
1414
workflow_dispatch:
@@ -35,18 +35,18 @@ jobs:
3535
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
3636
restore-keys: |
3737
${{ runner.os }}-node-
38-
38+
3939
- name: node ${{ matrix.node-version }}
4040
uses: actions/setup-node@v1
4141
with:
4242
node-version: ${{ matrix.node-version }}
43-
43+
4444
- name: run tests
4545
run: |
46-
npm ci,
46+
npm ci
4747
npm run test:ci
48-
48+
4949
- name: build project
5050
run: |
51-
npm ci,
51+
npm ci
5252
npm run build:ci

0 commit comments

Comments
 (0)