Merge pull request #5 from carlitoplatanito/dependabot/npm_and_yarn/s… #37
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
name: Production Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
prodDeploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# - run: sudo apt-get install -y make rsync zip | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: Install Deps | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
# - name: Release | |
# run: yarn version minor && yarn release |