Skip to content

Bump @types/react-dom from 18.2.7 to 18.2.22 #85

Bump @types/react-dom from 18.2.7 to 18.2.22

Bump @types/react-dom from 18.2.7 to 18.2.22 #85

Workflow file for this run

name: CI/CD Workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Check lints
run: npm run lint
- name: Format code
run: npm run format
# - name: Run the tests
# run: npm run test
- name: Build
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/