Skip to content

Commit e3ca7a7

Browse files
committed
Merge branch 'main' into release-1.3.0
2 parents 8aad451 + 01186f2 commit e3ca7a7

File tree

7 files changed

+61
-327
lines changed

7 files changed

+61
-327
lines changed

.circleci/config.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
name: Test
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version-file: '.nvmrc'
16+
cache: 'npm'
17+
- run: npm ci
18+
- run: npm run test
19+
20+
lint:
21+
name: Check lint
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-node@v4
26+
with:
27+
node-version-file: '.nvmrc'
28+
cache: 'npm'
29+
- run: npm ci
30+
- run: npm run lint
31+
32+
format:
33+
name: Check code format
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v4
37+
- uses: actions/setup-node@v4
38+
with:
39+
node-version-file: '.nvmrc'
40+
cache: 'npm'
41+
- run: npm ci
42+
- run: npm run prettier:check

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18.12

0 commit comments

Comments
 (0)