mirror of
https://github.com/morten-olsen/parcel.git
synced 2026-02-08 01:36:24 +01:00
21 lines
475 B
YAML
21 lines
475 B
YAML
name: QA
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install 🔧
|
|
run: |
|
|
yarn install
|
|
|
|
- name: Test
|
|
run: |
|
|
yarn test
|