Skip to content

Commit

Permalink
Add yarn check github action
Browse files Browse the repository at this point in the history
Mainly to avoid problems caused with cypress-io#11, which worked well with npm, crashed and burned with yarn
  • Loading branch information
JJ committed Nov 25, 2021
1 parent d820284 commit 877f73f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/yarn.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Check with yarn
on: [push, pull_request ]
jobs:
build:
name: Install and test with yarn
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: borales/actions-yarn@v2.3.0
with:
cmd: install
- uses: borales/actions-yarn@v2.3.0
with:
cmd: test

0 comments on commit 877f73f

Please sign in to comment.