e1fb9a8250
* add lask for packages * Add turbo * remove custom scripts * update turbo scripts * Improve scripts, update changelogs * update action to use turbo * Update .gitignore * Update main.yml * Update main.yml * Update main.yml * Add docs * add clean
29 lines
692 B
YAML
29 lines
692 B
YAML
name: CI
|
|
on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
# turbo cache
|
|
- name: Turbo Cache
|
|
id: turbo-cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: node_modules/.cache/turbo
|
|
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
|
|
restore-keys: |
|
|
turbo-${{ github.job }}-${{ github.ref_name }}-
|
|
|
|
# install modules
|
|
- name: Install modules
|
|
run: yarn
|
|
|
|
# build
|
|
- name: Build Packages
|
|
run: yarn build:packages --cache-dir=".turbo"
|
|
|
|
# run unit tests
|
|
- name: Jest Annotations & Coverage
|
|
run: yarn test:ci
|