extra clean workflow #3
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: React App CI | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
- name: Clear npm cache | |
run: npm cache clean --force | |
- name: Delete node_modules and package-lock.json | |
run: rm -rf node_modules package-lock.json | |
- name: Set npm registry | |
run: npm config set registry https://registry.npmjs.org/ | |
- name: Update npm | |
run: npm install -g npm@latest | |
- name: Install dependencies | |
run: npm ci | |
env: | |
npm_config_loglevel: verbose | |
- name: Build | |
run: npm run build | |
- name: Upload Artifacts | |
uses: actions/upload-pages-artifact@v2 | |