Skip to content

Bump @babel/plugin-syntax-jsx from 7.23.3 to 7.24.1 (#41) #29

Bump @babel/plugin-syntax-jsx from 7.23.3 to 7.24.1 (#41)

Bump @babel/plugin-syntax-jsx from 7.23.3 to 7.24.1 (#41) #29

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main # replace with your default branch if not 'main'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18' # replace with your Node.js version
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build # replace with your build command if not 'npm run build'
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist # replace with your dist directory if not './dist'
publish_branch: live