Skip to content

chore(deps): update mcr.microsoft.com/devcontainers/typescript-node d… #329

chore(deps): update mcr.microsoft.com/devcontainers/typescript-node d…

chore(deps): update mcr.microsoft.com/devcontainers/typescript-node d… #329

Workflow file for this run

name: checks
on:
push:
branches:
- dev
- renovate/**
pull_request:
branches:
- dev
jobs:
lint:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/')
steps:
- name: Checkout
uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/')
steps:
- name: Checkout
uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- run: npm run build