run and test
Some checks failed
node-js / Test (14.x) (push) Failing after 23s

This commit is contained in:
AlexVeeBee 2024-02-27 00:34:35 +00:00
parent 30ce160b8f
commit 88728bd003

View File

@ -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: