Add workflow to test Meltano add/install for changed plugins #2699
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 for linting or formatting errors | |
on: | |
pull_request: {} | |
push: | |
branches: [main] | |
jobs: | |
lint: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Use Node.js v16 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
cache: "yarn" | |
- run: yarn install --immutable | |
- run: yarn lint:check | |
format: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Use Node.js v16 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
cache: "yarn" | |
- run: yarn install --immutable | |
- run: yarn format:check |