Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

chore(ci): bump node versions in actions #354

Merged
merged 1 commit into from Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Expand Up @@ -4,24 +4,24 @@ on: [push, pull_request]

jobs:
markdown:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '16.x'
- run: npm install -g markdownlint-cli@0.27.1
- run: npm run lint:markdown

prettier:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '16.x'
- name: Restore NPM cache
uses: actions/cache@v2
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v2
Expand Down