Skip to content
This repository was archived by the owner on Jan 2, 2023. It is now read-only.

Commit c49c01c

Browse files
author
Bassem Dghaidi
committed
Remove build stage and keep tests only
1 parent 1d663db commit c49c01c

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/build.yml renamed to .github/workflows/test.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
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

63
on:
74
push:
@@ -11,24 +8,27 @@ on:
118

129
jobs:
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:

0 commit comments

Comments
 (0)