Skip to content

Referral

Referral #37

Workflow file for this run

name: Ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.platform }}
name: "${{ matrix.platform }} ${{ matrix.nodeversion }}"
strategy:
matrix:
platform: [ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Run CI
run: yarn --frozen-lockfile && yarn ci