Skip to content

fix: unused parameter #11

fix: unused parameter

fix: unused parameter #11

Workflow file for this run

name: Build and deploy
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i -f
# - run: npm test
- run: npm run build
- name: GitHub Pages
uses: crazy-max/ghaction-github-pages@v2.0.1
with:
# Build directory to deploy
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}