Skip to content

Commit 13f84fe

Browse files
committed
Update working-directory in automated-tests.yml
1 parent b5036aa commit 13f84fe

1 file changed

Lines changed: 21 additions & 14 deletions

File tree

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: CI
1+
# This is an example workflow file
2+
name: Automated Tests
23

34
on:
45
push:
@@ -9,20 +10,26 @@ on:
910
- main
1011

1112
jobs:
12-
build:
13+
test:
1314
runs-on: ubuntu-latest
14-
1515
steps:
16-
- name: Checkout code
17-
uses: actions/checkout@v2
18-
19-
- name: Set up Node.js
20-
uses: actions/setup-node@v2
21-
with:
22-
node-version: '18'
16+
- name: Check out code
17+
uses: actions/checkout@v2
2318

24-
- name: Install dependencies
25-
run: npm install
19+
- name: Run automated tests
20+
run: |
21+
cd ./automated-testing
22+
# Run your test command here
23+
working-directory: ./automated-testing
24+
25+
- name: Build
26+
run: |
27+
cd ./automated-testing
28+
# Your build commands here
29+
working-directory: ./automated-testing
2630

27-
- name: Run tests
28-
run: npm test
31+
- name: Deploy
32+
run: |
33+
cd ./automated-testing
34+
# Your deployment commands here
35+
working-directory: ./automated-testing

0 commit comments

Comments
 (0)