Merge pull request #116 from pundit-community/dependabot/npm_and_yarn… #242
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] | |
jobs: | |
build: | |
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ['20.17'] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install pnpm package manager | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.10.0 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
- name: Check for known security issues | |
run: pnpm audit | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: Remark | |
run: pnpm remark | |
- name: Prettier | |
run: pnpm prettier | |
- name: Types | |
run: pnpm types | |
- name: Validate current commit (last commit) with commitlint | |
if: github.event_name == 'push' | |
run: npx commitlint --last --verbose | |
- name: Test | |
run: pnpm coverage | |
- name: Build | |
run: pnpm build |