Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ name: Node.js CI

on:
push:
branches: [ develop ]
branches: [develop]
pull_request:
branches: [ develop ]
branches: [develop]

jobs:
build:

runs-on: ubuntu-latest

strategy:
Expand All @@ -20,13 +19,13 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test --if-present
- run: npm run js:lint --if-present
- run: npm run css:lint --if-present
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test --if-present
- run: npm run js:lint --if-present
- run: npm run css:lint --if-present
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Changelog

## [Unreleased](https://github.com/shift72/core-template/compare/1.9.24...HEAD)
## [Unreleased](https://github.com/shift72/core-template/compare/1.9.25...HEAD)

## [1.9.25](https://github.com/shift72/core-template/compare/1.9.24...1.9.25)

### Added

- Bluesky support in footer links

### Changed

- Workflow action to use setup-node@v4, checkout@v4 as per https://github.com/actions/setup-node/issues/1275. Older versions deprecated.

## [1.9.24](https://github.com/shift72/core-template/compare/1.9.23...1.9.24)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions kibble.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "core-template",
"version": "1.9.24",
"version": "1.9.25",
"siteUrl": "https://staging-store-kibble.shift72.com",
"builderVersion": "0.17.6",
"defaultLanguage": "en",
Expand Down Expand Up @@ -194,5 +194,5 @@
"pageSize": 0
}
],
"coreTemplateVersion": "1.9.24"
"coreTemplateVersion": "1.9.25"
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shift72/core-template",
"version": "1.9.24",
"version": "1.9.25",
"description": "Shift72 core template",
"license": "MIT",
"scripts": {
Expand Down