Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 8 additions & 23 deletions .github/workflows/check-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,12 @@ concurrency:
jobs:
setup-node:
name: Setup Dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci

uses: ./.github/workflows/node-setup.yml
strategy:
matrix:
node-version: [22]
with:
node-version: ${{ matrix.node-version }}
check_lint:
name: Validate package linting
runs-on: ubuntu-latest
Expand All @@ -31,14 +25,9 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
uses: ./.github/actions/cache-restore
- name: Check Linting
run: npm run lint

check_format:
name: Validate package formatting
runs-on: ubuntu-latest
Expand All @@ -47,10 +36,6 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
uses: ./.github/actions/cache-restore
- name: Check Formatting
run: npm run test:format
Loading