From 8583fd8e3a3f07695c25140e07288f118780db07 Mon Sep 17 00:00:00 2001 From: Hayato Kuroda Date: Sat, 9 Mar 2024 00:30:09 +0900 Subject: [PATCH] Update demo.yml --- .github/workflows/demo.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 8fc224c..2ff9238 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -1,13 +1,12 @@ name: learn-github-actions run-name: ${{ github.actor }} is learning GitHub Actions on: [push] + jobs: - check-bats-version: + pull-postgres: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '14' - - run: npm install -g bats - - run: bats -v + - name: Checkout + uses: actions/checkout@v4 + - name: Setup node + run: sudo apt-get -y install build-essential