Skip to content

Commit

Permalink
v3(chore): refactor workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiiRochi committed Nov 28, 2023
1 parent c45ceda commit 2708eed
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/eslint.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/pull_request_guard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pull Request Guard
on: [pull_request]

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: ./.github/workflows/yarn

- uses: Maggi64/eslint-plus-action@master
with:
npmInstall: false

build:
needs: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: ./.github/workflows/yarn

- name: Install Peer
run: yarn add wavesurfer.js

- name: Build
run: yarn build

0 comments on commit 2708eed

Please sign in to comment.