mirror of
https://github.com/morten-olsen/parcel.git
synced 2026-02-08 01:36:24 +01:00
22 lines
389 B
YAML
22 lines
389 B
YAML
name: QA
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v2.3.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install 🔧
|
|
run: |
|
|
corepack enable
|
|
yarn install
|
|
|
|
- name: Test
|
|
run: |
|
|
NODE_ENV=production yarn test
|