Skip to content

added filters for resolutions #5

added filters for resolutions

added filters for resolutions #5

name: React app deployment
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm i
shell: bash
- run: npm ci
shell: bash
- run: CI=false npm run build
shell: bash
- run: git config user.name github-actions
shell: bash
- run: git config user.email [email protected]
shell: bash
- run: git --work-tree build add --all
shell: bash
- run: git commit -m "Automatic Deploy action run by github-actions"
shell: bash
- run: git push origin HEAD:gh-pages --force
shell: bash