Skip to content

Commit 684f45c

Browse files
committed
workflow
1 parent 67f402c commit 684f45c

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
on:
3+
- push
4+
jobs:
5+
Run:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
node-version:
10+
- 13.x
11+
steps:
12+
-
13+
uses: actions/checkout@v1
14+
-
15+
name: Install
16+
run: npm install
17+
-
18+
name: Build
19+
run: npm run build

src/docker/image/build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ pushd "firephp"
2020
echo "### DIFF ###"
2121

2222
git status
23-
2423
# git diff
2524

2625
popd

src/docker/image/install.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,4 @@ pushd "firephp"
2323

2424
npm install
2525

26-
# TODO: Get rid of needing to run this.
27-
node_modules/.bin/lib.json from node_modules > .~lib.json
28-
2926
popd

0 commit comments

Comments
 (0)