Skip to content

Commit

Permalink
Merge pull request #45 from iambumblehead/pin-node-20.4-to-tests-last…
Browse files Browse the repository at this point in the history
…-usable-version-import-meta-resolve

rename test pipeline file to test.yml, update test pipeline
  • Loading branch information
iambumblehead authored Sep 11, 2023
2 parents d348343 + 9ce1074 commit 151f667
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: nodejs-ci
name: test

on:
push:
Expand All @@ -15,14 +15,14 @@ jobs:

strategy:
matrix:
node-version: [20.x]
node-version: [20.4, 20.x]
os: [ubuntu-latest, windows-latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# changelog

* 2.0.3 _Sep.09.2023_
* pin node 20.4 at unit-test pipeline, last version of node before import.meta.resolve was reduced
* 2.0.2 _Mar.18.2023_
* increment dependencies,
* use node 20 at ci
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"name": "resolvewithplus",
"version": "2.0.2",
"description": "resolvewith with extra power",
"readmeFilename": "README.md",
"license": "ISC",
"type": "module",
"engines" : {
"node": ">=12.16.0"
},
"license": "ISC",
"main": "resolvewithplus.js",
"exports": {
"import": "./resolvewithplus.js"
},
"readmeFilename": "README.md",
"description": "resolvewith with extra power",
"type": "module",
"files": [
"resolvewithplus.js"
],
"repository": {
"type": "git",
"url": "https://github.com/iambumblehead/resolvewithplus.git"
"url": "git+https://github.com/iambumblehead/resolvewithplus.git"
},
"keywords": [
"dependency",
Expand All @@ -30,9 +30,9 @@
"file"
],
"devDependencies": {
"c8": "^7.13.0",
"eslint": "^8.38.0",
"eslint-plugin-markdown": "^3.0.0"
"c8": "^8.0.1",
"eslint": "^8.49.0",
"eslint-plugin-markdown": "^3.0.1"
},
"scripts": {
"test:install": "cd tests && npm run install:all",
Expand Down

0 comments on commit 151f667

Please sign in to comment.