feat added portal in dialog and made close button sticky #109
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: CI | |
on: | |
push: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.1 | |
- name: Setup git config | |
run: | | |
git config user.name "Sadanand Pai" | |
git config user.email "sadypai@gmail.com" | |
- name: NPM installation | |
run: npm install | |
- name: Lint check | |
run: npm run lint | |
- name: Unit & E2E testing | |
run: | | |
npm test | |
npm run e2e:test | |
- name: Build setup | |
run: | | |
rm -rf dist | |
npm run build | |
git add docs -f | |
- name: Commit & push | |
run: | |
git diff --staged --quiet || (git commit -m "build files - github | |
action" && git push) |