-
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (73 loc) · 3.2 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
###############################################################################
# TEST CHROME EXTENSION AND FIREFOX EXTENSION
###############################################################################
name: Run tests
###############################################################################
# ON
###############################################################################
on:
push:
branches:
- main
schedule:
- cron: '0 0 * * *' # Ejecuta todos los días a la medianoche (UTC)
###############################################################################
# JOBS
###############################################################################
jobs:
build:
name: TEST
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
###########################################################################
# STEPS
###########################################################################
steps:
#########################################################################
# INIT & INSTALLATION
#########################################################################
- name: 🛎 Checkout
uses: actions/checkout@v3
- name: 🏗 Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
- name: 👨🏻💻 Install pkg dependencies
run: |
pnpm install --no-frozen-lockfile
- name: 🌐 Install Playwright Browsers
run: pnpm exec playwright install --with-deps
###################################################################
# BUILD
###################################################################
- name: 🏗 Build package
run: pnpm build
###################################################################
# TESTS
###################################################################
- name: Run tests
run: pnpm test
id: test
- name: Check test status and create issue if failed
if: ${{ failure() }}
run: |
testStatus=$(echo "${{ steps.test.outcome }}")
# Check if the issue is already open
if curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
https://api.github.com/repos/${{ github.repository }}/issues?state=open | grep -q "Error en los tests"; then
echo "Issue already exists, not creating a new one."
else
# Create issue only if the test has failed and there's no open issue
if [ "$testStatus" = "failure" ]; then
echo "Test failed, creating an issue."
# Call an action to create the issue here
- uses: JasonEtco/create-an-issue@v2
with:
title: Tests error
body: The tests have failed. Please check and fix the code.
fi
fi
###############################################################################
# END
###############################################################################