Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f30ea98
ourbigbook.com features
cirosantilli Jul 5, 2022
729e241
readme
cirosantilli Jul 26, 2022
b7f8b80
heroku
cirosantilli Aug 26, 2022
5241655
added tests on cypress
Feb 9, 2023
2cf5472
fixed readme link
Feb 9, 2023
d638335
updated package file
Feb 13, 2023
adde9d4
login command added, reference types added
Feb 14, 2023
9a997ed
removed red commands
May 3, 2023
75b44c5
updated instr
Jun 6, 2023
ce2c14c
updated readme
Jun 6, 2023
2ac66e8
dev.md updated
Jun 7, 2023
ac0c8bf
eslint updated
Jun 7, 2023
83482df
package.json updated, added cross-env
Jun 8, 2023
54d5ffe
updated data-cy attributes, updated readme file
Jun 12, 2023
5ae0312
Merge pull request #29 from mate-academy/update_data_cy
iBrianWarner Jun 12, 2023
52c3ac9
readme updated
Jun 12, 2023
3cde02f
updated lint rules, updated POM
Jul 11, 2023
0cc727f
faker updated
Apr 8, 2024
dd4d2a8
gh actions config is added
OleksiiBlezniuk Feb 5, 2025
4024bab
Update test.yml
OleksiiBlezniuk Feb 5, 2025
7e0de3f
Update test.yml
OleksiiBlezniuk Feb 5, 2025
1976b88
Update test.yml
OleksiiBlezniuk Feb 5, 2025
1540211
Merge pull request #205 from mate-academy/add-github-action-config
OleksiiBlezniuk Feb 6, 2025
43fea2f
Add hint to a readme file
OleksiiBlezniuk Feb 18, 2025
c0f5e2f
Merge pull request #209 from mate-academy/add-hint-to-readme-file
OleksiiBlezniuk Feb 18, 2025
5ca5a19
solution
aakash1sadhu May 5, 2026
93db1df
solution
aakash1sadhu May 5, 2026
8724590
fixes
aakash1sadhu May 5, 2026
523650b
fixes
aakash1sadhu May 5, 2026
5465de8
final
aakash1sadhu May 5, 2026
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
36 changes: 36 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
module.exports = {
env: {
browser: true,
es2021: true,
'cypress/globals': true
},
extends: [
'plugin:cypress/recommended'
],
overrides: [
],
parserOptions: {
ecmaVersion: 'latest'
},
plugins: [
'cypress'
],
rules: {
semi: ['error', 'always'],
'space-before-function-paren': 'off',
'cypress/no-assigning-return-values': 'error',
'cypress/no-unnecessary-waiting': 'error',
'cypress/assertion-before-screenshot': 'warn',
'cypress/no-force': 'warn',
'cypress/no-async-tests': 'error',
'cypress/no-pause': 'error',
'max-len': ['error', 80, {
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
ignoreComments: true
}],
'arrow-parens': ['error', 'always'],
quotes: ['error', 'single', { allowTemplateLiterals: true }],
'no-console': ['error']
}
};
22 changes: 0 additions & 22 deletions .eslintrc.json

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
pull_request:
branches: [ next ]

jobs:
build:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --legacy-peer-deps
- run: |
npm run dev &
npm run test-e2e
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
Loading