Skip to content

New template based on rollup and with extra boilerplate stuff #5

New template based on rollup and with extra boilerplate stuff

New template based on rollup and with extra boilerplate stuff #5

Workflow file for this run

name: "Lint"
on:
workflow_dispatch:
pull_request:
branches: [main, develop]
push:
branches: [develop]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [20.x]
env:
CI: "true"
steps:
- uses: actions/checkout@v3
- name: Set up Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies # runs the npm ci command to install from package-lock.json
run: npm ci
- name: Build with tsc & lint
run: npm run lint