Skip to content

Commit

Permalink
Pmcb/update prettier eslint (#904)
Browse files Browse the repository at this point in the history
* updating Prettier and related dependencies

* use correct version - doh

* update node versions in CI
  • Loading branch information
pmcb55 authored Oct 1, 2023
1 parent 1543fea commit d02e847
Show file tree
Hide file tree
Showing 42 changed files with 2,245 additions and 5,862 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
steps:
# Makes the current repository available to the workflow.
- name: Checkout repo
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0
# Initializes Node.js for the runner.
- name: Node setup
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v3.8.1
with:
node-version: "14.x"
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: NPM install, test and publish
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
# Available OS's: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
os: [ubuntu-20.04]

node-version: [20.x, 18.x, 16.x, 14.x]
node-version: [20.x, 18.x, 16.x]
runs-on: ${{ matrix.os }}
name: Run tests on all PRs to 'main'
steps:
# Setup
- name: Checkout repo
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down
Loading

0 comments on commit d02e847

Please sign in to comment.