Skip to content

Commit

Permalink
ci: removes unnecessary gha
Browse files Browse the repository at this point in the history
  • Loading branch information
ctran88 committed Apr 3, 2024
1 parent 679d2be commit 3d254ca
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 47 deletions.
44 changes: 23 additions & 21 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
name: Run Tests on PR

on: [pull_request]
on:
pull_request:
workflow_dispatch:

env:
API_KEY: ${{ secrets.API_KEY }}
APP_ID: ${{ secrets.APP_ID }}
APP_TOKEN: ${{ secrets.APP_TOKEN }}
EXAMPLE_USER_ID: ${{ secrets.EXAMPLE_USER_ID }}
PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }}
API_KEY: ${{ secrets.API_KEY }}
APP_ID: ${{ secrets.APP_ID }}
APP_TOKEN: ${{ secrets.APP_TOKEN }}
EXAMPLE_USER_ID: ${{ secrets.EXAMPLE_USER_ID }}
PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }}

jobs:
publish:
name: Run Tests on PR
runs-on: ubuntu-latest
publish:
name: Run Tests on PR
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install Dependencies
run: npm i
- name: Install Dependencies
run: npm i

- name: ESLint Check
run: npm run lint:ci
- name: ESLint Check
run: npm run lint:ci

- name: Beachball Check
run: |
npm run beachball-check
- name: Beachball Check
run: |
npm run beachball-check
- name: Unit Test
run: npm run test
- name: Unit Test
run: npm run test
26 changes: 0 additions & 26 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 3d254ca

Please sign in to comment.