Skip to content

Commit 185a9da

Browse files
committed
remove newsletter, switch to npm
1 parent da234dc commit 185a9da

File tree

5 files changed

+4504
-3030
lines changed

5 files changed

+4504
-3030
lines changed

.github/workflows/nodejs.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [12.x]
12+
node-version: [lts/*]
1313

1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
- name: yarn install, format, and build
20+
- name: npm install, format, and build
2121
run: |
22-
yarn
23-
yarn format
24-
yarn build
22+
npm i
23+
npm run format
24+
npm run build
2525
env:
2626
CI: true

0 commit comments

Comments
 (0)