Skip to content

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

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

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

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@b4ffde65f46336ab88eb53be808477a3936bae11 # 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@v3
with:
path: node_modules
key: yarn-deps-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-deps-${{ hashFiles('yarn.lock') }}