Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjvs committed May 3, 2024
1 parent 10f8087 commit 8688603
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/config-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: config - test

on:
pull_request: {}

jobs:
check:
name: Check if files modified
runs-on: ubuntu-latest
outputs:
checked: ${{ steps.changed-files.outputs.any_modified }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v42
with:
files: |
packages/config/**
lint:
name: Testing
runs-on: ubuntu-latest
needs: [check]
if: needs.check.outputs.checked == 'true'
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v3
with:
version: 8

- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install pnpm packages
working-directory: packages/config
run: pnpm install --frozen-lockfile

- name: Test
working-directory: packages/config
run: pnpm test

0 comments on commit 8688603

Please sign in to comment.