Skip to content

fix(deps): update dependency @shufo/tailwindcss-class-sorter to v3 - autoclosed #1945

fix(deps): update dependency @shufo/tailwindcss-class-sorter to v3 - autoclosed

fix(deps): update dependency @shufo/tailwindcss-class-sorter to v3 - autoclosed #1945

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: npm install
run: |
yarn install
env:
CI: true
- name: linting
run: |
yarn run lint
yarn run check_formatted
env:
CI: true
- name: yarn run test --runInBand
run: |
yarn test
env:
CI: true
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}