try non-self hosted

This commit is contained in:
dank074 2021-09-16 17:56:18 -05:00 committed by GitHub
parent d3823227d1
commit 772bda8e07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,11 +7,18 @@ on:
jobs: jobs:
build: build:
runs-on: self-hosted runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install & Build - name: Install & Build
run: | run: |
npm run build:prod npm run build:prod