diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78e523a..0300db9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,20 +6,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - with: - path: app - + with: + path: app - uses: actions/setup-node@master - with: - node-version: 19 + with: + node-version: 19 + - name: Install Node dependencies + run: | + cd app + npm install - - name: Install Node dependencies - run: | - cd app - npm install - - - name: Build - run: | - cd app - npm run build:js - ls out + - name: Build + run: | + cd app + npm run build:js + ls out