chore(deps): update swc monorepo #133
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: CI - @eddeee888/eslint-plugin | |
on: | |
push: | |
branches-ignore: | |
- master | |
env: | |
node-version: '20.x' | |
jobs: | |
precheck: | |
name: Check jobs to run | |
runs-on: ubuntu-22.04 | |
outputs: | |
affected-eslint-plugin: ${{ steps.affected.outputs.eslint-plugin }} | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.node-version }} | |
cache: yarn | |
cache-dependency-path: '**/yarn.lock' | |
- name: Install deps | |
run: yarn install --prefer-offline | |
- name: Check affected projects | |
id: affected | |
run: | | |
echo "eslint-plugin=$(./tools/bin/check-affected.sh lib eslint-plugin origin/master)" >> $GITHUB_OUTPUT | |
cat $GITHUB_OUTPUT | |
eslint-plugin: | |
runs-on: ubuntu-22.04 | |
needs: precheck | |
if: ${{ needs.precheck.outputs.affected-eslint-plugin == 'true' }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.node-version }} | |
cache: yarn | |
cache-dependency-path: '**/yarn.lock' | |
- name: Install deps | |
run: yarn install --prefer-offline | |
- name: Lint | |
run: yarn nx lint eslint-plugin | |
- name: Build | |
run: yarn nx build eslint-plugin |