build(deps-dev): bump follow-redirects from 1.15.2 to 1.15.4 #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
name: Source code formatting & spellcheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node 16 | |
uses: dafnik/setup-node-pnpm@v1 | |
with: | |
node: 16 | |
install: true | |
- name: Check formatting with Prettier | |
run: pnpm format:check | |
- name: Spellcheck (entire repository) | |
run: pnpm spellcheck | |
typecheck: | |
name: Typecheck & linting | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node 16 | |
uses: dafnik/setup-node-pnpm@v1 | |
with: | |
node: 16 | |
install: true | |
- name: Lint with ESLint | |
run: pnpm lint | |
- name: Check Typescript | |
run: pnpm typecheck |