Skip to content

Commit

Permalink
chore: upgrade glob to latest, verify windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenbroekema committed Dec 21, 2023
1 parent d32e1aa commit 04e6ce8
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 39 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.x
# use lts, bump this if new major becomes lts
node-version: 20.x
registry-url: 'https://registry.npmjs.org'

- name: Install Dependencies
Expand Down
16 changes: 12 additions & 4 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,25 @@ on: pull_request
jobs:
verify:
name: Verify changes
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
# latest node & minimum node according to pkg.json engines
node-version: [18.0, 21.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install Dependencies
run: npm ci
Expand Down
56 changes: 24 additions & 32 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
Expand Up @@ -100,7 +100,7 @@
"homepage": "https://github.com/amzn/style-dictionary",
"dependencies": {
"@bundled-es-modules/deepmerge": "^4.3.1",
"@bundled-es-modules/glob": "^10.3.5",
"@bundled-es-modules/glob": "^10.3.10",
"@bundled-es-modules/memfs": "^4.2.3",
"@bundled-es-modules/path-browserify": "^1.0.2",
"chalk": "^5.3.0",
Expand Down

0 comments on commit 04e6ce8

Please sign in to comment.