Skip to content

Upgrade all the things #196

Upgrade all the things

Upgrade all the things #196

Workflow file for this run

# https://turbo.build/repo/docs/ci/github-actions
name: Build
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
cache: "yarn"
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Build
run: yarn build