mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
86 lines
2.4 KiB
YAML
86 lines
2.4 KiB
YAML
name: Tests
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
unit_tests:
|
|
name: Unit tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x, 14.x, 16.x, 17.x]
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{matrix.node-version}}
|
|
- name: Install Corepack if needed
|
|
run: corepack -v || npm install -g corepack
|
|
- name: Install dependencies
|
|
run: corepack yarn install --immutable
|
|
- name: Run tests
|
|
run: corepack yarn run test:unit
|
|
|
|
lint_js:
|
|
name: Lint JavaScript/TypeScript
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Cache npm dependencies
|
|
id: cache-npm-libraries
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: .yarn/cache/*
|
|
key: ${{ runner.os }}
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16.x
|
|
- name: Install dependencies
|
|
run: corepack yarn install --immutable
|
|
- name: Run linter
|
|
run: corepack yarn run lint
|
|
|
|
lint_md:
|
|
name: Lint Markdown
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Cache npm dependencies
|
|
id: cache-npm-libraries
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: .yarn/cache/*
|
|
key: ${{ runner.os }}
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16.x
|
|
- name: Install dependencies
|
|
run: corepack yarn install --immutable
|
|
- name: Run linter
|
|
run: corepack yarn run lint:markdown
|
|
|
|
types:
|
|
name: Type tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16.x
|
|
- name: Install dependencies
|
|
run: corepack yarn install --immutable
|
|
# Need to do a bunch of work to generate the locale typings 🙃
|
|
- name: Prepare type declarations
|
|
run: |
|
|
corepack yarn run build:lib
|
|
corepack yarn run build:companion
|
|
corepack yarn run build:locale-pack
|
|
- name: Run type tests
|
|
run: corepack yarn run test:type
|