Merge pull request #247 from github/upgrade-actions-runners

Upgrade actions runners
This commit is contained in:
Keith Cirkel 2022-05-20 14:18:26 +01:00 коммит произвёл GitHub
Родитель 61add791d2 3273ae81ff
Коммит 8c600caae1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 11 добавлений и 18 удалений

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

@ -3,8 +3,6 @@ name: Build
on:
pull_request:
push:
branches:
- main
jobs:
test-node:
@ -12,20 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the project
uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
uses: actions/checkout@v3
- name: Use Node.js 16.x (LTS)
uses: actions/setup-node@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js 13.11.0
uses: actions/setup-node@v1
with:
node-version: 13.11.0
- name: Install dependencies
run: npm i
node-version: 16.x
cache: 'npm'
- run: npm ci
- name: Lint Codebase
run: npm run lint
- name: Run Node.js Tests

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

@ -8,10 +8,12 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Checkout the project
uses: actions/checkout@v3
- name: Use Node.js 16.x (LTS)
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16.x
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci