Skip to content

Commit

Permalink
chore: add text nodejs action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rubeniskov committed May 2, 2020
1 parent 6467e10 commit 9f635ab
Show file tree
Hide file tree
Showing 3 changed files with 13,838 additions and 2 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: CI/CD

on:
push:
branches: [develop]
pull_request:
branches: [develop]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*-lock.json
dist
.cache
/vendor
Expand Down Expand Up @@ -106,4 +105,4 @@ build/**/*
/client-secret.json
/lib
.tgz
/public/dist
/public/dist
Loading

0 comments on commit 9f635ab

Please sign in to comment.