Skip to content

v0.15.0

v0.15.0 #187

Workflow file for this run

name: CI
on:
pull_request:
push:
tags:
- "*"
jobs:
ci:
name: Lint, Test and Build on Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18.x", "20.x", "21.x"]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Cache turbo
uses: actions/cache@v3
with:
path: .turbo
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ matrix.node }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.job }}-${{ github.ref_name }}-${{ matrix.node }}-
- name: Install dependencies
run: yarn
- name: Lint, Test and Build
run: yarn run-all-gha