Skip to content

Set up relative-ci

Set up relative-ci #1

Workflow file for this run

name: RelativeCI pnpm
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install packages
run: pnpm install
- run: pnpm build
env:
RELATIVE_CI_KEY: ${{ secrets.RELATIVE_CI_KEY }}