This repository was archived by the owner on Jan 2, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change 1- # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2- # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
4- name : Build & Test
1+ name : Run Tests
52
63on :
74 push :
118
129jobs :
1310
14- build :
15- runs-on : ubuntu-latest
16-
17- steps :
18- - uses : actions/checkout@v2
19- - name : npm install and build webpack
20- run : |
21- ls -lha
22- npm ci
23- npm run build --if-present
24- - uses : actions/upload-artifact@master
25- with :
26- name : webpack artifacts
27- path : dist/
11+ # Removing the build job for now because it's useless
12+ # and a time waster. If there's a need for it, we'll introduce
13+ # it later
14+ #
15+ # build:
16+ # runs-on: ubuntu-latest
17+
18+ # steps:
19+ # - uses: actions/checkout@v2
20+ # - name: npm install and build webpack
21+ # run: |
22+ # ls -lha
23+ # npm ci
24+ # npm run build --if-present
25+ # - uses: actions/upload-artifact@master
26+ # with:
27+ # name: webpack artifacts
28+ # path: dist/
2829
2930
3031 test :
31- needs : build
3232 runs-on : ubuntu-latest
3333
3434 strategy :
You can’t perform that action at this time.
0 commit comments