Skip to content

feat: add craftHideFilterType rule (#155) #103

feat: add craftHideFilterType rule (#155)

feat: add craftHideFilterType rule (#155) #103

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
pull_request:
branches:
- main
paths-ignore:
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Typecheck code
run: npm run typecheck
- name: Run tests
run: npm run test
- name: Build application
run: npm run build