Skip to content

Fix lint issues: format artifact.tsx, prefix unused param in prompts.ts #9

Fix lint issues: format artifact.tsx, prefix unused param in prompts.ts

Fix lint issues: format artifact.tsx, prefix unused param in prompts.ts #9

Workflow file for this run

name: Lint
on:
push:
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint