This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
Merge remote-tracking branch 'origin/master' into dev #156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: App Buider Dev | |
on: | |
push: | |
branches: [ dev ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run deploy-ci --param1=${{ secrets.PARAM1 }} --param2=${{ secrets.PARAM2 }} --param3=${{ secrets.PARAM3 }} --param4=${{ secrets.PARAM4 }} |