Cfweb 121 interoperate @defer and migrate control structures #199
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 & Trigger Deploy | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# define node version | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# setting up node | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
# install | |
- name: Install Dependencies | |
if: steps.cache-nodemodules.outputs.cache-hit != 'true' | |
run: | | |
npm i | |
npm ci | |
# install playwright | |
- name: Install Playwright with Chrome | |
run: | | |
npx playwright install --with-deps | |
# build | |
- name: Build | |
run: | | |
npm run build:prod | |
# unit tests (single run - headless chrome) | |
- name: Unit Tests | |
run: | | |
npm run test:ci | |
# Run E2E Tests | |
- name: PlayWright Test | |
run: | | |
npm run e2e:playwright:ci | |
- name: WebdriverIO Test | |
run: | | |
npm run e2e:wdio:ci | |
# Upload artifact of current build | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: angular-styleguide | |
path: ./dist/angular-redux-shop | |
deploy: | |
# only deploy when PR has been merged to main branch & build job was successfully finished | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
# first checkout to main | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: angular-styleguide | |
path: ./dist/angular-redux-shop | |
# Deploy recent build and push it to branch 'gh-pages' | |
# this will trigger the action 'pages build & deployment' to host the recent build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist/angular-redux-shop/browser | |
publish_branch: gh-pages |