Merge pull request #216 from unstoppabledomains/ryan/fix-redirect-host #243
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push CI | |
on: | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.event_name }}-pr | |
cancel-in-progress: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
pr_ci: | |
name: Validate | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Build shared libraries | |
run: yarn build | |
- name: Typecheck | |
run: yarn typecheck | |
- name: Lint | |
run: yarn lint | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
base: ${{ github.base_ref }} | |
filters: |- | |
server: [server/**, packages/**] | |
packages: [packages/**] | |
- name: Run Tests - UD.me Frontend | |
if: ${{ steps.changes.outputs.server == 'true' }} | |
run: yarn test:ci ./server/** | |
env: | |
NODE_OPTIONS: --max_old_space_size=3072 | |
- name: Run Tests - Shared Packages | |
if: ${{ steps.changes.outputs.packages == 'true' }} | |
run: yarn test:ci ./packages/** | |
env: | |
NODE_OPTIONS: --max_old_space_size=3072 | |
- name: Verify NPM build | |
run: yarn dist |