Skip to content

Bump marocchino/sticky-pull-request-comment from 2.8.0 to 2.9.0 #1985

Bump marocchino/sticky-pull-request-comment from 2.8.0 to 2.9.0

Bump marocchino/sticky-pull-request-comment from 2.8.0 to 2.9.0 #1985

Workflow file for this run

name: Static Analysis (Linting...)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: JavaScript and Styles
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Npm install
run: npm ci
- name: Lint JavaScript
run: npm run lint
- name: Type checking
run: npm run tsc