Skip to content

chore(deps): bump @babel/traverse from 7.22.5 to 7.23.2 (#186) #364

chore(deps): bump @babel/traverse from 7.22.5 to 7.23.2 (#186)

chore(deps): bump @babel/traverse from 7.22.5 to 7.23.2 (#186) #364

Workflow file for this run

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"