chore(deps): bump mongodb from 5.7.0 to 5.8.0 (#181) #356
Workflow file for this run
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: Build web | |
on: | |
push: | |
branches: [master, release/*, next] | |
pull_request: | |
types: [synchronize, opened, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn | |
- name: Build packages | |
run: yarn build-packages | |
- name: Build | |
working-directory: ./website | |
run: yarn build | |
# need to build packages in order to run the bundlemon action on the current CLI | |
- name: Build packages | |
run: yarn build-packages | |
- name: BundleMon | |
uses: lironer/bundlemon-action@v1 | |
with: | |
working-directory: ./website | |
- name: Deploy | |
if: ${{ github.ref_name == 'master' }} | |
working-directory: ./website | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
# https://securitylab.github.com/research/github-actions-untrusted-input/ | |
COMMIT_MSG: ${{ github.event.head_commit.message }} | |
run: yarn deploy:prod --message "$COMMIT_MSG" |