Skip to content

check tests with actions #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 40 commits into from
Dec 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
7dba72b
check tests with actions
DavertMik Dec 22, 2019
876d146
check tests with actions
DavertMik Dec 22, 2019
07716f8
check tests with actions, set version
DavertMik Dec 22, 2019
950c762
check tests with actions, set version
DavertMik Dec 22, 2019
0a5d2f6
changed path for tests
DavertMik Dec 22, 2019
51673d3
added github workspace env
DavertMik Dec 22, 2019
9a0dba7
check tests with actions, set version
DavertMik Dec 22, 2019
65d0eb7
added github workspace env
DavertMik Dec 22, 2019
d6c1d66
updated to compare with head
DavertMik Dec 22, 2019
0f7cea7
changed config
DavertMik Dec 22, 2019
0e0f58b
changed config
DavertMik Dec 22, 2019
15ed46b
minor change
DavertMik Dec 22, 2019
6fa945c
minor change
DavertMik Dec 22, 2019
4a07511
minor change
DavertMik Dec 22, 2019
3e2f269
minor change
DavertMik Dec 22, 2019
0f6cb05
skipped 2 tests
DavertMik Dec 22, 2019
cb636c6
skipped 2 tests
DavertMik Dec 22, 2019
68c903d
skipped tests
DavertMik Dec 22, 2019
264d55f
skipped 2 tests
DavertMik Dec 22, 2019
7e2949d
skipped tests
DavertMik Dec 22, 2019
789914e
updated config
DavertMik Dec 22, 2019
3593f38
updated config
DavertMik Dec 22, 2019
05376e1
fixed head
DavertMik Dec 22, 2019
ef2de95
fixed branch
DavertMik Dec 23, 2019
4c25720
fixed branch
DavertMik Dec 23, 2019
521b33d
fixed branch commits
DavertMik Dec 23, 2019
1f0b2a3
fixed branch commits
DavertMik Dec 23, 2019
a669ae3
fixed branch commits
DavertMik Dec 23, 2019
8bb8dc5
fixed branch commits
DavertMik Dec 23, 2019
b75e8e6
fixed branch commits
DavertMik Dec 23, 2019
c85df30
fixed branch commits
DavertMik Dec 23, 2019
ac4e949
fixed branch commits
DavertMik Dec 23, 2019
8193513
add test label
DavertMik Dec 23, 2019
d65e217
add test label
DavertMik Dec 23, 2019
f0f6cb8
add test label
DavertMik Dec 23, 2019
292895e
add only label
DavertMik Dec 23, 2019
46236c6
add only label
DavertMik Dec 23, 2019
9982261
added .only checks
DavertMik Dec 23, 2019
621ae08
fixed .only checks
DavertMik Dec 23, 2019
71e6cc1
restored tests
DavertMik Dec 23, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: [push]


jobs:
test:
runs-on: ubuntu-latest
name: Check Tests
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: testomatio/check-tests@master
with:
framework: codeceptjs
tests: "./todomvc-tests/**_test.js"
token: ${{ secrets.GITHUB_TOKEN }}
has-tests-label: true

3 changes: 1 addition & 2 deletions todomvc-tests/create-todos_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ Scenario('Create a new todo item', async (I, TodosPage) => {
TodosPage.seeNumberOfTodos(1)

I.saveScreenshot('create-todo-item.png')
})
});

Scenario('Create multiple todo items', async (I, TodosPage) => {
I.say('Given I have an empty todo list')

I.say('When I create todos "foo", "bar" and "baz"')
TodosPage.enterTodo('foo')
TodosPage.enterTodo('bar')
Expand Down