add configuration for Github Pages #68
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 status | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: build status | |
runs-on: ubuntu-latest | |
env: | |
# Force colored output in Github Actions logs | |
FORCE_COLOR: "1" | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Install Node 🔧 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
cache: 'npm' | |
- name: Install Dependencies 🔧 | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Send Slack message 🔔 | |
# Trigger even if the job fails | |
if: always() | |
# See https://github.com/marketplace/actions/slack-notify for configuration options | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_USERNAME: Github Actions | |
SLACK_ICON: https://avatars.githubusercontent.com/u/11186132?s=200&v=4 | |
SLACK_FOOTER: "" | |
SLACK_COLOR: ${{ job.status }} | |
MSG_MINIMAL: commit,actions url | |
SLACK_TITLE: "${{ github.event_name == 'push' && 'Pushed into' || 'Running PR' }} `${{ github.ref_name }}`" | |
SLACK_MESSAGE: ${{ github.event.head_commit.message || github.event.pull_request.title }} |