From 0ca11927116d861755a2094a8d78dadb35b5ddfb Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Fri, 12 Apr 2024 15:03:06 -0400 Subject: [PATCH] Remove container build from CI --- .github/workflows/ci.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0fd47c..ad82a80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,19 +2,14 @@ name: CI 🔨 on: pull_request: - branches: ['main'] + branches: ["main"] push: - branches: ['main'] + branches: ["main"] jobs: ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: npm install --production - run: "./test.sh" - - uses: ./ - name: "Check container builds" - with: - format: shell -