From fb3f639ae62ced4aa5898e7ad37cf27d94748ec6 Mon Sep 17 00:00:00 2001 From: Ben Silverman Date: Tue, 5 Dec 2023 11:43:52 -0500 Subject: [PATCH] Allow tests to be run manually from github --- .github/workflows/dev-test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev-test.yml b/.github/workflows/dev-test.yml index 59324c8e..a60e3783 100644 --- a/.github/workflows/dev-test.yml +++ b/.github/workflows/dev-test.yml @@ -4,6 +4,7 @@ on: push: branches: - develop + workflow_dispatch: env: DATABASE_URL: postgres://user:password@localhost:5432/readux @@ -51,17 +52,17 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: "3.10" - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7.2' + ruby-version: "2.7.2" - name: Setup Node uses: actions/setup-node@v3 with: - node-version: '18.12' + node-version: "18.12" - name: Install system requirements run: | @@ -100,4 +101,4 @@ jobs: - name: Test Webpack build run: | npm install - npx webpack \ No newline at end of file + npx webpack