Skip to content

Commit

Permalink
fix: fix ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Nov 20, 2023
1 parent 2b5f8e2 commit 0a5217e
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [18]
name: Node ${{ matrix.node }}

steps:
- uses: actions/checkout@v4
- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Setup node
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
- name: install
run: npm ci
- name: build
run: npm run nx -- affected:build
- name: test
run: npm run nx -- affected:test --parallel=1
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run nx -- affected:build
- run: npm run nx -- affected:test --parallel=1

0 comments on commit 0a5217e

Please sign in to comment.