fix longtable import and empty row/columns on new deck (#182) #143
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: Build and Deploy Angular | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| defaults: | |
| run: | |
| working-directory: ./cider-app | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Cache node modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Install dependencies | |
| run: | | |
| npm i | |
| - name: Run build | |
| run: | | |
| npm run build:gh-pages | |
| - name: Create 404 page | |
| run: | | |
| cp dist/cider/browser/index.html dist/cider/browser/404.html | |
| - name: Archive build | |
| if: success() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: deploy_dist | |
| path: cider-app/dist/cider | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v1 | |
| - name: Download build | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: deploy_dist | |
| - name: Display structure of downloaded files | |
| run: ls -R | |
| - name: Deploy to GitHub Pages | |
| uses: oatear/github-pages-deploy-action@v4.7.3 | |
| with: | |
| branch: gh-pages | |
| folder: browser |