From a59230a3475dea8b52f2400d4c918e9b715bcbc9 Mon Sep 17 00:00:00 2001 From: Isaac Mann Date: Wed, 15 Nov 2023 16:07:48 -0500 Subject: [PATCH 1/4] chore: log a message --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..38abb3c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,15 @@ +name: CI +on: + push: + branches: + # Change this if your primary branch is not main + - main + pull_request: + +jobs: + main: + runs-on: ubuntu-latest + steps: + - run: + name: Print a message + command: echo "Hello GitHub Actions!" From 12185734387643b4ad2af1a87863dbe7a560c432 Mon Sep 17 00:00:00 2001 From: Isaac Mann Date: Wed, 15 Nov 2023 16:09:29 -0500 Subject: [PATCH 2/4] chore: log a message --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38abb3c..59e85d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,4 @@ jobs: main: runs-on: ubuntu-latest steps: - - run: - name: Print a message - command: echo "Hello GitHub Actions!" + - run: echo "Hello GitHub Actions!" From 260ab15861250a4db93afcdb7d5e37edb0a95a78 Mon Sep 17 00:00:00 2001 From: Isaac Mann Date: Wed, 15 Nov 2023 16:16:36 -0500 Subject: [PATCH 3/4] chore(ci): build one app --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59e85d9..8d4660a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,4 +10,8 @@ jobs: main: runs-on: ubuntu-latest steps: - - run: echo "Hello GitHub Actions!" + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - run: pnpm install --frozen-lockfile + - run: pnpm nx build cart From e9079c88464b73e6b7bb53d4013a5a1598bad01d Mon Sep 17 00:00:00 2001 From: Isaac Mann Date: Wed, 15 Nov 2023 16:22:16 -0500 Subject: [PATCH 4/4] chore(ci): build one app --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d4660a..9e4b70d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,6 @@ name: CI on: push: branches: - # Change this if your primary branch is not main - main pull_request: @@ -13,5 +12,9 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 + # Setup pnpm + - uses: pnpm/action-setup@v2 + with: + version: 8 - run: pnpm install --frozen-lockfile - run: pnpm nx build cart