Skip to content

chore: bump version to 0.33.0 #327

chore: bump version to 0.33.0

chore: bump version to 0.33.0 #327

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-and-lint:
name: Test and Lint
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
- name: Setup dependencies
uses: ./.github/workflows/actions/setup-dependencies
- name: Run ESLint
run: yarn lint
- name: Run unit tests
run: yarn test --ci --coverage
- name: Upload test results and coverage
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: always()
with:
name: test-results
path: |
coverage/
test-results/
junit.xml
retention-days: 30
if-no-files-found: ignore
affected-test-and-lint:
name: Test and Lint Affected Projects
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
- name: Setup dependencies
uses: ./.github/workflows/actions/setup-dependencies
- name: Lint affected projects
run: npx nx affected --target=lint --base=origin/main
- name: Test affected projects
run: npx nx affected --target=test --base=origin/main --ci --coverage
- name: Upload affected results
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: always()
with:
name: affected-results
path: |
coverage/
test-results/
junit.xml
retention-days: 30