-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 943 Bytes
/
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
name: Tests
on:
schedule:
- cron: '0 0 * * SUN'
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validations:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/cache@v3
with:
path: |
.npm
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git checkout ${{ env.BRANCH }}
- uses: actions/setup-node@v3
with:
node-version: '*'
check-latest: true
- run: |
python -m pip install --upgrade pip
npm ci --cache .npm --prefer-offline
npm install --global npm
npm install
- name: prettier
run: npx prettier . --check
- name: eslint
run: npx eslint --color .
- name: Run Tests
run: npm run test