Skip to content

chore: github actions split experiments #7

chore: github actions split experiments

chore: github actions split experiments #7

Workflow file for this run

name: Lint
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: latest
- name: Install dependencies
run: npm ci
- name: commitlint
run: npm run commitlint
- name: lint
run: npm run lint