fix(deps): update dependency eslint-plugin-tailwindcss to v3.17.4 #820
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: Mergability Check | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Installing node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: 'yarn' | |
cache-dependency-path: 'integration/**/yarn.lock' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile && yarn install:integration | |
- name: Build | |
run: yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
timeout-minutes: 4 | |
run: yarn test:coverage --ci |