Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedcognite committed Jan 2, 2024
1 parent 870fb11 commit 97c1123
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .github/workflows/verify-pr-build.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
name: Verify PR Build

on: [push]
name: Verify PR build
on:
push:
branches:
# Change this if your primary branch is not main
- main
pull_request:

jobs:
Explore-GitHub-Actions:
main:
runs-on: ubuntu-latest
steps:
- run: pwd
- run: ls -la
- run: yarn install
- run: npx nx affected -t build
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Cache node_modules
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- run: yarn ci
- uses: nrwl/nx-set-shas@v3
# This line is needed for nx affected to work when CI is running on a PR
- run: git branch --track main origin/main

- run: npx nx format:check
- run: npx nx affected -t lint,test,build --parallel=3

0 comments on commit 97c1123

Please sign in to comment.