This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
npm: bump @types/react-dom from 18.2.17 to 18.2.22 #41
Workflow file for this run
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: Node.js CI | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Upgrade NPM | |
run: npm install -g npm | |
- name: copy-config | |
run: cp src/configuration.example.tsx src/configuration.tsx | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
cache: 'npm' | |
- run: npm install | |
- run: npm run css-build | |
- run: npm run build | |