Skip to content

update publish workflow. #66

update publish workflow.

update publish workflow. #66

Workflow file for this run

name: ESlint Test
on:
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [24]
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run lint