Skip to content

Sirush (Lint and Build) #25

Sirush (Lint and Build)

Sirush (Lint and Build) #25

name: Lint and Build
run-name: ${{ github.actor }} (Lint and Build)
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
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'
- run: npm i
- run: npm run lint
- run: npm run build --if-present