Skip to content

Commit

Permalink
Update and rename build.yml to ci-cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mordechai Dror authored Sep 7, 2023
1 parent e3d26c2 commit 9b0c6c7
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build.yml → .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build NodeJS Application
name: CI/CD

on:
push:
Expand All @@ -11,18 +11,14 @@ jobs:
name: Build
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 18
cache: 'yarn'

- name: Install dependencies
Expand Down

0 comments on commit 9b0c6c7

Please sign in to comment.