Merge pull request #43 from lawvs/dependabot/npm_and_yarn/follow-redi… #31
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Build and Deploy | |
on: | |
push: | |
branches: ['master'] | |
pull_request: | |
branches: ['master'] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run build | |
env: | |
USERNAME: ${{ vars.USERNAME }} | |
EMAIL: ${{ vars.EMAIL }} | |
- run: npm run typeCheck | |
- run: npm run lint | |
- name: Upload pages artifacts | |
# https://github.com/actions/upload-pages-artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: 'dist/' | |
- name: Deploy to GitHub Pages | |
if: github.ref == 'refs/heads/master' | |
# https://github.com/actions/deploy-pages | |
uses: actions/deploy-pages@v4 |