Skip to content

⬆️ Bump @babel/traverse from 7.12.9 to 7.24.0 #119

⬆️ Bump @babel/traverse from 7.12.9 to 7.24.0

⬆️ Bump @babel/traverse from 7.12.9 to 7.24.0 #119

Workflow file for this run

# 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: Build CI
on:
pull_request:
branches: ['**']
env:
NODE_VERSION: 20.x
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check Build Status
env:
CMS_API: ${{ secrets.CMS_API }}
SITE_URL: ${{ secrets.SITE_URL }}
NEXT_PUBLIC_FACEBOOK_APP_ID: ${{ secrets.NEXT_PUBLIC_FACEBOOK_APP_ID }}
run: yarn run build