Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Migrate alpha to Yarn (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
VasilyStrelyaev committed Dec 19, 2022
1 parent e005f7e commit 8a86d3a
Show file tree
Hide file tree
Showing 5 changed files with 7,171 additions and 20,829 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/npm-audit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Npm audit
name: Yarn audit

on:
pull_request:
Expand All @@ -17,5 +17,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: npm audit
run: npm audit
- name: Install Yarn
run: npm install -g yarn
- name: Yarn audit
run: yarn audit
8 changes: 5 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: npm install
run: npm install
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: npm run test
run: yarn run test

0 comments on commit 8a86d3a

Please sign in to comment.