Skip to content

Commit

Permalink
split in two jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Monargoras committed Nov 19, 2024
1 parent cd78c44 commit 4506a1d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Test Nxtstart Creation 👷
on: push
jobs:
build:
npm:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
Expand All @@ -16,4 +16,18 @@ jobs:
- run: npm install
- run: npm install -g
- run: npm run testNpm
yarn:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup Node.js 🔧
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
# needed to avoid npm authentication problems in github action runner when trying to npm install
- run: rm package-lock.json
- run: npm install
- run: npm install -g
- run: npm run testYarn

0 comments on commit 4506a1d

Please sign in to comment.