Skip to content

Commit e85aaae

Browse files
authored
Create initial release-tag.yml
1 parent 4f4c153 commit e85aaae

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/release-tag.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Node.js CI
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
test_main_code:
8+
runs-on: macos-latest
9+
strategy:
10+
matrix:
11+
node-version: [18.x]
12+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v2
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm install
21+
- run: npm test

0 commit comments

Comments
 (0)