Skip to content

Merge pull request #180 from murshidazher/renovate/prettier-3.x #186

Merge pull request #180 from murshidazher/renovate/prettier-3.x

Merge pull request #180 from murshidazher/renovate/prettier-3.x #186

Workflow file for this run

# .github/workflows/push.yml
## name of our action
name: CI on Push
# the event that will trigger the action
on:
push:
branches: [master]
# what the action will do
jobs:
release:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Prepare repository
run: git fetch --unshallow --tags
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: yarn-deps-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-deps-${{ hashFiles('yarn.lock') }}