Skip to content

feat: option to not fail when no changes to commit #5

feat: option to not fail when no changes to commit

feat: option to not fail when no changes to commit #5

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- 'releases/*'
schedule:
- cron: '0 22 * * 2'
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint
- name: Test
id: npm-ci-test
run: npm run ci-test