Minor bug fixes & build job (#89)

This commit is contained in:
Chris Anderson 2023-03-21 18:27:14 -05:00 committed by GitHub
parent 152fe8d430
commit b8d246592d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 3 deletions

View file

@ -76,3 +76,24 @@ jobs:
BASE_URL: https://parcelvoy.com
QUEUE_DRIVER: memory
STORAGE_DRIVER: s3
build:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Node Install
run: |
npm install
- name: Build
run: |
npm run build