Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Migrate to Gravatar profile REST API #31

Migrate to Gravatar profile REST API

Migrate to Gravatar profile REST API #31

Workflow file for this run

name: Type check / Lint / Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Type check
run: yarn type-check
- name: Lint
run: yarn lint
- name: Build
run: yarn build