Skip to content

fix: unused import

fix: unused import #21

Workflow file for this run

on:
push:
branches: main
paths-ignore:
- README.md
- .github/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: npm install
run: |
npm ci
npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist/
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- name: Deploy artifact
id: deployment
uses: actions/deploy-pages@v1