fix: update build script to include base-href for ngx-image-compress-… #119
This file contains hidden or 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-CD' | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| jobs: | |
| build-test-deploy: | |
| name: Build, test, and deploy the demo only | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: '20' | |
| registry-url: 'https://registry.npmjs.org' | |
| - uses: actions/checkout@master | |
| - name: 'Install dependency' | |
| run: npm ci | |
| - name: 'Build' | |
| run: npm run build | |
| - name: 'Test the library' | |
| run: npm run test:lib | |
| - name: 'Test the demo app' | |
| run: npm run test:app | |
| - name: 'Ship the coverage within the demo website' | |
| run: cp -r ./coverage ./dist/ngx-image-compress-demo/coverage | |
| - name: 'Publish to GitHub Pages' | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./dist/ngx-image-compress-demo | |
| commit_message: ${{ github.event.head_commit.message }} |