-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (37 loc) · 831 Bytes
/
dev.yml
File metadata and controls
39 lines (37 loc) · 831 Bytes
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
name: 'Dev'
on:
push:
branches:
- dev
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
linting:
name: Linting Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Run Eslint
run: npm run eslint
- name: Run prettier check
run: npm run prettier:check
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm run test