Skip to content

chore: 🔧 remove line-clamp plugin since Tailwind now imports it by de… #15

chore: 🔧 remove line-clamp plugin since Tailwind now imports it by de…

chore: 🔧 remove line-clamp plugin since Tailwind now imports it by de… #15

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
jobs:
test:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Use cached node_modules
uses: actions/cache@v2
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
nodeModules-
- name: Install dependencies
run: |
yarn install --frozen-lockfile
yarn clean
- name: Lint
run: yarn lint
- name: Run a type-check to make sure no build-time errors
run: yarn typecheck
- name: Build
run: yarn build
- name: Test
run: yarn test:ci