Skip to content

Commit

Permalink
πŸ“¦FEATURE: Add config GitHub Actions (#5)
Browse files Browse the repository at this point in the history
* πŸ› FIX: configuration Github Actions

* πŸ› FIX: configuration Github Actions

* πŸ› FIX: configuration Github Actions
  • Loading branch information
JhonWilderParionaVilca committed Jul 12, 2020
1 parent 28da7a5 commit fea5b72
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: πŸ“¦ Checkout code
- uses: actions/checkout@v1
uses: actions/checkout@v1

- name: Use Node.js 12.x
uses: actions/setup-node@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: πŸ“¦ Checkout code
- uses: actions/checkout@v1
- name: Checkout code πŸ“¦
uses: actions/checkout@v1

- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: πŸ— Install and Build
- name: Install and Build πŸ—
run: |
npm install
npm run build --if-present
- name: πŸš€ Deploy to netlify
- name: Deploy to netlify πŸš€
uses: netlify/actions/cli@master
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: πŸ“¦ Checkout code
- uses: actions/checkout@v1
uses: actions/checkout@v1

- name: Use Node.js 12.x
uses: actions/setup-node@v1
Expand Down

0 comments on commit fea5b72

Please sign in to comment.