Bump @tailwindcss/vite from 4.1.2 to 4.1.3 in /vue-model-explorer (#52) #125
This file contains hidden or 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: JavaScript | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: vue-model-explorer | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Node | |
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 | |
with: | |
node-version-file: vue-model-explorer/.node-version | |
- name: Install pnpm | |
run: npm install -g pnpm@10 | |
- name: Set pnpm store directory | |
run: echo "PNPM_STORE_PATH=$(pnpm store path)" >> $GITHUB_ENV | |
- name: Set up pnpm cache | |
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
with: | |
path: ${{ env.PNPM_STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-pnpm-store- | |
- name: Install NPM packages | |
run: pnpm install --frozen-lockfile --loglevel=warn | |
- name: Check Prettier | |
run: ./node_modules/.bin/prettier . --check |