Merge pull request #125 from BipanKishore/text-area-click-fix #63
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: Build & Test | |
on: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
branches: [ "master" ] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node-version: [20.x] | |
os: [ubuntu-latest] | |
runs-on: ${{matrix.os}} | |
# defaults: | |
# run: | |
# working-directory: ./packages/resizable-panes-react | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: | | |
npm install --legacy-peer-deps | |
- name: Lint/EsLint | |
run: | | |
npm run lint | |
- name: Resizable Core Build | |
run: | | |
npm run core:prod | |
- name: Resizable React/JS/Next libs Builds | |
run: | | |
npm run prod | |
- name: Resizable Demo App Build | |
run: | | |
npm run demo:prod | |
- name: Resizable React Testing | |
run: | | |
npm test | |
working-directory: ./packages/resizable-panes-react | |
- name: Resizable React Check Coverage | |
run: | | |
npm run coverage | |
working-directory: ./packages/resizable-panes-react | |
- name: Upload artifacts | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ${{format('{0}/{1}', github.workspace, 'packages/resizable-panes-react/cypress/screenshots')}} | |
retention-days: 30 | |
- name: Echo | |
run: | |
echo ${{format('{0}/{1}', github.workspace, 'packages/resizable-panes-react')}} | |
pwd | |
myVar=$(pwd) | |
echo $myVar | |
# - name: SonarCloud Scan | |
# uses: SonarSource/sonarcloud-github-action@master | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Demo App - Deploy to GitHub Pages | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: JamesIves/github-pages-deploy-action@4.1.0 | |
with: | |
branch: gh-pages | |
folder: ~/work/resizable-panes/resizable-panes/packages/demo-app/docs | |
- name: Resizable React NPM Publish | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: ${{format('{0}/{1}', github.workspace, 'packages/resizable-panes-react')}} | |
- name: Resizable JS NPM Publish | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: ${{format('{0}/{1}', github.workspace, 'packages/resizable-panes-js')}} | |
- name: Resizable Next NPM Publish | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: ${{format('{0}/{1}', github.workspace, 'packages/resizable-panes-next')}} | |