This commit is contained in:
parent
30ce160b8f
commit
88728bd003
11
.github/workflows/main.yml
vendored
11
.github/workflows/main.yml
vendored
@ -11,7 +11,6 @@ permissions:
|
|||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Test
|
name: Test
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
@ -25,9 +24,13 @@ jobs:
|
|||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- run: npm ci
|
- name: Install Dependencies
|
||||||
- run: npm run build
|
run: |
|
||||||
- run: npm test
|
npm install
|
||||||
|
- name: Build and Test
|
||||||
|
run: |
|
||||||
|
npm run build
|
||||||
|
npm test
|
||||||
- name: Publish to release
|
- name: Publish to release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user