Skip to content

Commit

Permalink
Merge pull request #3 from sourceallies/great-feature
Browse files Browse the repository at this point in the history
testing pipeline
  • Loading branch information
prowe authored Oct 7, 2024
2 parents 8aa676e + 3d02510 commit 9198e57
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,31 @@ on:
- main

jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# check-format:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4

- name: install
run: npm ci
# - name: install
# run: npm ci

- name: format
run: npm run check-format
# - name: format
# run: npm run check-format

run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# run-tests:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4

- name: install
run: npm ci
# - name: install
# run: npm ci

- name: test
run: npm run test
# - name: test
# run: npm run test

deploy-dev:
deploy-prod:
runs-on: ubuntu-latest
if: ${{ github.ref_name == 'main' }}
needs:
Expand Down

0 comments on commit 9198e57

Please sign in to comment.