adding orb defense and notes #1
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 and Deploy | |
on: [push] | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
node-version: [ 20.x ] # 18.x, | |
steps: | |
- name: actions/checkout@v3 🛎️ | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install # --legacy-peer-deps | |
- run: npm run build | |
- name: JamesIves/github-pages-deploy-action@v4 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: build |