Skip to content

chore: make pick buttons actual buttons #6

chore: make pick buttons actual buttons

chore: make pick buttons actual buttons #6

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run all
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v2
with:
path: 'public'
Deploy:
needs: Build
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3