Update CI/CD
All checks were successful
CI / build (push) Successful in 20s

This commit is contained in:
Andrey Kernichniy 2026-03-07 23:06:04 +07:00
parent a100988848
commit 4b108d5a85
2 changed files with 12 additions and 4 deletions

View file

@ -13,12 +13,16 @@ jobs:
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: ${{ vars.VERDACCIO_URL }}
- name: Install dependencies
run: npm ci
run: npm ci --registry ${{ vars.VERDACCIO_URL }}
env:
VERDACCIO_URL: ${{ vars.VERDACCIO_URL }}
NODE_AUTH_TOKEN: ${{ secrets.VERDACCIO_TOKEN }}
- name: Prettier
run: npm run prettier:check

View file

@ -15,12 +15,16 @@ jobs:
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: ${{ vars.VERDACCIO_URL }}
- name: Install dependencies
run: npm ci
run: npm ci --registry ${{ vars.VERDACCIO_URL }}
env:
VERDACCIO_URL: ${{ vars.VERDACCIO_URL }}
NODE_AUTH_TOKEN: ${{ secrets.VERDACCIO_TOKEN }}
- name: Prettier
run: npm run prettier:check