This commit is contained in:
Dusty Greif 2024-10-14 19:31:06 +00:00
Родитель 42eab1453b
Коммит 527000cd87
2 изменённых файлов: 7 добавлений и 6 удалений

7
.github/workflows/nodejs.yml поставляемый
Просмотреть файл

@ -4,11 +4,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '14.x'
node-version: 22
cache: 'npm'
- run: npm install
- run: npm run build --if-present
- run: npm test

6
.github/workflows/publish.yml поставляемый
Просмотреть файл

@ -10,10 +10,10 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 22
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci