Skip to content

build(deps): bump super-linter/super-linter from 6.8.0 to 7.1.0 #94

build(deps): bump super-linter/super-linter from 6.8.0 to 7.1.0

build(deps): bump super-linter/super-linter from 6.8.0 to 7.1.0 #94

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- 'releases/*'
schedule:
- cron: '0 22 * * 2'
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
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