chore(deps): bump react, react-dom and @types/react #146
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: Default Pipeline | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
init: | |
uses: ./.github/workflows/00-init.yml | |
build: | |
name: Build | |
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly | |
needs: [init] | |
steps: | |
- name: ⏬ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 🔄 Init Cache | |
uses: ./.github/actions/npm-cache | |
- name: 🔨 Build Packages | |
run: npm run build |