Skip to content

build: ignore type issues #3

build: ignore type issues

build: ignore type issues #3

Workflow file for this run

# simple ci
name: bh-releaser ci
on:
push:
branches:
- "**"
pull_request:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.13.1]
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint