Skip to content

Products assets (#9) #8

Products assets (#9)

Products assets (#9) #8

Workflow file for this run

name: Master build
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
checkout:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
install:
runs-on: self-hosted
needs: ["checkout"]
steps:
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
fmt:
runs-on: self-hosted
needs: ["install"]
steps:
- run: npm run fmt.check
lint:
runs-on: self-hosted
needs: ["install"]
steps:
- run: npm run lint
build:
runs-on: self-hosted
needs: ["install", "fmt", "lint"]
steps:
- run: npm run build