We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aa01742 + 2781466 commit f3503f1Copy full SHA for f3503f1
3 files changed
.github/workflows/ci.yml
@@ -25,7 +25,7 @@ jobs:
25
with:
26
node-version: 15
27
- name: "Install Prettier"
28
- run: npm install --global prettier@2.3.0
+ run: npm install --global prettier@2.5.0
29
- name: "Check code format"
30
run: make check
31
@@ -50,5 +50,11 @@ jobs:
50
steps:
51
- name: "Set up GitHub Actions"
52
uses: actions/checkout@v2
53
- - name: "Build Docker image"
54
- run: make docker-build
+ - name: "Setup node"
+ uses: actions/setup-node@v2
55
+ with:
56
+ node-version: 15
57
+ - name: "Install dependencies"
58
+ run: npm install-clean
59
+ - name: "Run tests"
60
+ run: make build
0 commit comments