Skip to content

Commit

Permalink
Remove test on deploy due to bug
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGLander committed Dec 25, 2020
1 parent be95b49 commit 54de15c
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Auto-deploy versions

on:
push:
branches: [ master ]
branches: [master]

jobs:
build:
Expand All @@ -15,18 +15,14 @@ jobs:
node-version: [12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- name: Install Deps
run: npm ci
- name: Build
run: npm run prodBuild --if-present
- name: Test
run: npm run test --if-present
- name: Deploy
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}


- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- name: Install Deps
run: npm ci
- name: Build
run: npm run prodBuild --if-present
- name: Deploy
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}

0 comments on commit 54de15c

Please sign in to comment.