Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Bump the minor-and-patch group in /src with 5 updates #75

Bump the minor-and-patch group in /src with 5 updates

Bump the minor-and-patch group in /src with 5 updates #75

Workflow file for this run

name: ci-as-lint
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
as-lint:
if: github.event_name == 'pull_request'
name: Lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'src/'
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ">=20"
- name: Install dependencies
run: npm install
- name: Validate code is formatted
run: npm run pretty:check
- name: Valid code is linted
run: npm run lint