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

chore: Deprecate Social oEmbed in favor of iframely self-hosted solution #30

chore: Deprecate Social oEmbed in favor of iframely self-hosted solution

chore: Deprecate Social oEmbed in favor of iframely self-hosted solution #30

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Install dependencies
run: npm i -g pnpm
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Lint
run: pnpm lint
- name: Check types
run: pnpm check:types
- name: Build
run: pnpm build
# - name: Test
# run: pnpm test