Skip to content

Commit 0e81dc0

Browse files
authored
chore: Fix workflows (#214)
* trigger * fix space
1 parent 1e4de27 commit 0e81dc0

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Diff for: .github/workflows/main.yml renamed to .github/workflows/main.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
7-
branches: [ master ]
7+
branches: [master]
88

99
jobs:
1010
setup:
@@ -32,7 +32,6 @@ jobs:
3232
mkdir package-temp-dir
3333
fi
3434
cp package-lock.json package-temp-dir
35-
3635
- name: cache node_modules
3736
id: node_modules_cache_id
3837
uses: actions/cache@v2
@@ -43,7 +42,7 @@ jobs:
4342
- name: install
4443
if: steps.node_modules_cache_id.outputs.cache-hit != 'true'
4544
run: npm ci
46-
45+
4746
lint:
4847
runs-on: ubuntu-latest
4948
steps:
@@ -66,7 +65,7 @@ jobs:
6665
run: npm run lint
6766

6867
needs: setup
69-
68+
7069
compile:
7170
runs-on: ubuntu-latest
7271
steps:
@@ -89,7 +88,7 @@ jobs:
8988
run: npm run compile
9089

9190
needs: setup
92-
91+
9392
coverage:
9493
runs-on: ubuntu-latest
9594
steps:

0 commit comments

Comments
 (0)