Skip to content

Commit

Permalink
feat(04-using-actions): setup node and add first version of npm ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lauromueller committed Oct 31, 2023
1 parent 23c0450 commit 1f226ae
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/04-using-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Printing Folders
run: ls
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install Dependencies
run: npm ci
# 0. Checkout the code from the repository
# 1. Install deps of our react application
# 2. Execute automated tests

0 comments on commit 1f226ae

Please sign in to comment.