Skip to content

Commit

Permalink
feat(c1): change npm to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSkriba committed Feb 13, 2024
1 parent 770662a commit 7471790
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,27 @@ name: Ambulance uFE CI

on:
push:
branches: [ "main" ]
branches: ['main']
tags:
- 'v1*'
- 'v1*'
pull_request:
branches: [ "main" ]
branches: ['main']

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ 20.x ]
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn ci
- run: yarn run build --if-present
- run: yarn test

0 comments on commit 7471790

Please sign in to comment.