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

fix(readme-parser): rewrite readme parsing pipeline #1004

fix(readme-parser): rewrite readme parsing pipeline

fix(readme-parser): rewrite readme parsing pipeline #1004

Workflow file for this run

name: Codemod Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run codemod unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install modules
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Run codemod unit tests
run: pnpm test