Add Actions workflow to check commons for breaking changes #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Breaking Changes in Commons | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
PLUGIN_DIR: eslint-plugin-commons | |
COMMONS_DIR: commons | |
jobs: | |
check-breaking-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout eslint-plugin-commons | |
uses: actions/checkout@v4 | |
with: | |
path: ${{ env.PLUGIN_DIR }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- name: Install dependencies for eslint-plugin-commons | |
working-directory: ${{ env.PLUGIN_DIR }} | |
run: pnpm install | |
- name: Package eslint-plugin-commons | |
working-directory: ${{ env.PLUGIN_DIR }} | |
run: | | |
PACKAGE_PATH=$(pnpm pack | tail -n 1) | |
echo "PACKAGE_PATH=${{ env.PLUGIN_DIR }}/$PACKAGE_PATH" >> $GITHUB_ENV | |
- name: Checkout commons repository | |
uses: actions/checkout@v4 | |
with: | |
repository: api3dao/commons | |
path: ${{ env.COMMONS_DIR }} | |
- name: Install packaged version in commons | |
working-directory: ${{ env.COMMONS_DIR }} | |
run: | | |
pnpm add -D file:../${{ env.PACKAGE_PATH }} | |
- name: Run ESLint on commons | |
working-directory: ${{ env.COMMONS_DIR }} | |
run: pnpm eslint . |