Skip to content

build(deps): bump amannn/action-semantic-pull-request from 5.5.3 to 6.1.1 #194

build(deps): bump amannn/action-semantic-pull-request from 5.5.3 to 6.1.1

build(deps): bump amannn/action-semantic-pull-request from 5.5.3 to 6.1.1 #194

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
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