mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
107 lines
3.4 KiB
YAML
107 lines
3.4 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'assets/**'
|
|
- 'e2e/**'
|
|
- 'examples/**'
|
|
- 'private/**'
|
|
- 'website/**'
|
|
- '.github/**'
|
|
- '!.github/workflows/ci.yml'
|
|
pull_request:
|
|
# We want all branches so we configure types to be the GH default again
|
|
types: [opened, synchronize, reopened]
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'assets/**'
|
|
- 'e2e/**'
|
|
- 'examples/**'
|
|
- 'private/**'
|
|
- 'website/**'
|
|
- '.github/**'
|
|
- '!.github/workflows/ci.yml'
|
|
|
|
env:
|
|
YARN_ENABLE_GLOBAL_CACHE: false
|
|
|
|
jobs:
|
|
unit_tests:
|
|
name: Unit tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x, 20.x]
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- name: Get yarn cache directory path
|
|
id: yarn-cache-dir-path
|
|
run:
|
|
echo "dir=$(corepack yarn config get cacheFolder)" >> $GITHUB_OUTPUT
|
|
|
|
- uses: actions/cache@v3
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
with:
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{matrix.node-version}}
|
|
- name: Install dependencies
|
|
run:
|
|
corepack yarn workspaces focus $(corepack yarn workspaces list --json
|
|
| jq -r .name | awk '/^@uppy-example/{ next } { if ($0!="uppy.io")
|
|
print $0 }')
|
|
env:
|
|
# https://docs.cypress.io/guides/references/advanced-installation#Skipping-installation
|
|
CYPRESS_INSTALL_BINARY: 0
|
|
- name: Run tests
|
|
run: corepack yarn run test:unit
|
|
|
|
types:
|
|
name: Type tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- name: Get yarn cache directory path
|
|
id: yarn-cache-dir-path
|
|
run:
|
|
echo "dir=$(corepack yarn config get cacheFolder)" >> $GITHUB_OUTPUT
|
|
|
|
- uses: actions/cache@v3
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
with:
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: lts/*
|
|
- name: Install dependencies
|
|
run:
|
|
corepack yarn workspaces focus $(corepack yarn workspaces list --json
|
|
| jq -r .name | awk '/^@uppy-example/{ next } { if ($0!="uppy.io")
|
|
print $0 }')
|
|
env:
|
|
# https://docs.cypress.io/guides/references/advanced-installation#Skipping-installation
|
|
CYPRESS_INSTALL_BINARY: 0
|
|
# 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
|
|
- name: Attempt building TS packages
|
|
run: corepack yarn run build:ts
|