Rerun the pipeline #17
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: MS CLUB Development CI/CD | |
on: | |
push: | |
branches: [development] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: Development | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install -g yarn | |
- name: yarn install | |
run: yarn install | |
- name: yarn build | |
env: | |
REACT_APP_BACKEND_URL: ${{ secrets.REACT_APP_BACKEND_URL }} | |
REACT_APP_STORAGE_BUCKET_URL: ${{ secrets.REACT_APP_STORAGE_BUCKET_URL }} | |
REACT_APP_STORAGE_BUCKET_NAME: ${{ secrets.REACT_APP_STORAGE_BUCKET_NAME }} | |
run: yarn build | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: build | |
path: build | |
deploy: | |
name: Deploy | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Download a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: build | |
path: build | |
- name: GitHub Action for Firebase | |
uses: w9jds/[email protected] | |
with: | |
args: deploy --only hosting --project development | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} |