Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 53f66b1

Browse files
authoredOct 25, 2024··
Merge pull request #387 from chris-pardy/tools-update
Tools update
2 parents ae8fa05 + 3527791 commit 53f66b1

File tree

132 files changed

+8722
-7864
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+8722
-7864
lines changed
 

‎.babelrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎.github/workflows/deploy.yml

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,37 @@ name: Deploy Package
55

66
on:
77
push:
8-
branches: [ master, v6 ]
8+
branches: [ master, v6, v8 ]
99

1010
jobs:
1111
build:
12-
1312
runs-on: ubuntu-latest
1413

1514
strategy:
1615
matrix:
1716
node-version: [18.x, 20.x, 22.x]
1817

1918
steps:
20-
- uses: actions/checkout@v2
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
23-
with:
24-
node-version: ${{ matrix.node-version }}
25-
- run: npm install
26-
- run: npm run build --if-present
27-
- run: npm run lint
28-
- run: npm test
19+
- uses: actions/checkout@v2
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: npm install
25+
- run: npm run build --if-present
26+
- run: npm run lint
27+
- run: npm test
2928
deploy:
3029
needs: build
3130
runs-on: ubuntu-latest
3231
steps:
33-
- uses: actions/checkout@v2
34-
- uses: actions/setup-node@v1
35-
with:
36-
node-version: 18.x
37-
- run: npm install
38-
- run: npm run build --if-present
39-
# https://github.com/marketplace/actions/npm-publish
40-
- uses: JS-DevTools/npm-publish@v2
41-
with:
42-
token: ${{ secrets.NPM_TOKEN }}
32+
- uses: actions/checkout@v2
33+
- uses: actions/setup-node@v1
34+
with:
35+
node-version: 18.x
36+
- run: npm install
37+
- run: npm run build --if-present
38+
# https://github.com/marketplace/actions/npm-publish
39+
- uses: JS-DevTools/npm-publish@v2
40+
with:
41+
token: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.