We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fea87a commit 4465b5cCopy full SHA for 4465b5c
.github/workflows/publish.yml
@@ -3,6 +3,7 @@ name: Publish Package
3
on:
4
release:
5
types: [created]
6
+ workflow_dispatch:
7
8
jobs:
9
publish:
@@ -20,14 +21,6 @@ jobs:
20
21
- name: Install dependencies
22
run: npm ci
23
- - name: Run linter
24
- run: npm run lint
25
-
26
- - name: Run tests
27
- run: npm test
28
- env:
29
- CI: true
30
31
- name: Build
32
run: npm run build
33
.github/workflows/test.yml
@@ -9,17 +9,14 @@ on:
10
test:
11
runs-on: ubuntu-latest
12
- strategy:
13
- matrix:
14
- node-version: [20.x]
15
16
steps:
17
- uses: actions/checkout@v4
18
19
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
- node-version: ${{ matrix.node-version }}
+ node-version: 20.x
cache: 'npm'
0 commit comments