Skip to content

feat: add build info log #20

feat: add build info log

feat: add build info log #20

Workflow file for this run

# 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 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