Skip to content

fix(tekton): fix #947: Reset pagination when changing any filter (#1140) #8

fix(tekton): fix #947: Reset pagination when changing any filter (#1140)

fix(tekton): fix #947: Reset pagination when changing any filter (#1140) #8

Workflow file for this run

name: Push
on:
push:
branches:
- main
concurrency:
group: push
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
uses: ./.github/actions/test
release:
name: Release
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate-token
uses: actions/create-github-app-token@f04aa94d10cf56334d1c580e077ce2e3569e805d # v1.6.3
with:
app-id: ${{ vars.JANUS_IDP_GITHUB_APP_ID }}
private-key: ${{ secrets.JANUS_IDP_GITHUB_APP_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v4
with:
# don't persist the GITHUB_TOKEN
# so that semantic-release can use use the generated token
persist-credentials: false
- name: Build all packages
uses: ./.github/actions/build
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Release via semantic-release
run: |
npm config set workspaces-update false
yarn release --ignore-private-packages
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_OPTIONS: '--max-old-space-size=8192'