Skip to content

move back to triggering helm releases when changing the chart folder #242

move back to triggering helm releases when changing the chart folder

move back to triggering helm releases when changing the chart folder #242

Workflow file for this run

name: Run tests
on:
push:
branches:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, '[skip-tests]')"
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build packages
run: yarn build --filter="./packages/*"
- name: Run tests
run: yarn test