Skip to content

refactor(generator): simplify findManyPaginated function by using del… #217

refactor(generator): simplify findManyPaginated function by using del…

refactor(generator): simplify findManyPaginated function by using del… #217

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
Publish:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 22.x
registry-url: https://registry.npmjs.org
- uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install
- name: Publish 🚀
working-directory: ./packages/generator
run: npx semantic-release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
permissions:
contents: write