Skip to content

Commit e8a8cad

Browse files
committed
ci
1 parent a845405 commit e8a8cad

File tree

5 files changed

+22
-21
lines changed

5 files changed

+22
-21
lines changed

.eslintrc.cjs

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
module.exports ={
2-
"env": {
3-
"browser": false,
4-
"es6": true,
5-
"node": true,
6-
"jest/globals": true
1+
module.exports = {
2+
env: {
3+
browser: false,
4+
es6: true,
5+
node: true,
6+
'jest/globals': true,
77
},
8-
"parser": "@typescript-eslint/parser",
8+
parser: '@typescript-eslint/parser',
99
parserOptions: {
10-
project: "./tsconfig.json",
10+
project: './tsconfig.json',
1111
tsconfigRootDir: __dirname,
12-
},
13-
"plugins": ["@typescript-eslint", "jest", "prettier"],
14-
"extends": [
15-
"eslint:recommended",
16-
"plugin:@typescript-eslint/recommended-requiring-type-checking",
17-
"prettier"
12+
},
13+
plugins: ['@typescript-eslint', 'jest', 'prettier'],
14+
extends: [
15+
'eslint:recommended',
16+
'plugin:@typescript-eslint/recommended-requiring-type-checking',
17+
'prettier',
1818
],
19-
"rules": {},
20-
"ignorePatterns": ["**/*.cjs", "**/*.mjs", "**/*.js"],
21-
}
19+
rules: {},
20+
ignorePatterns: ['**/*.cjs', '**/*.mjs', '**/*.js'],
21+
};

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/setup-node@v4
1313
with:
1414
node-version: 20
15-
cache: "yarn"
15+
cache: 'yarn'
1616
- name: Install
1717
run: yarn --frozen-lockfile
1818
- name: Build

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/setup-node@v4
1313
with:
1414
node-version: 20
15-
cache: "yarn"
15+
cache: 'yarn'
1616
- name: Install
1717
run: yarn --frozen-lockfile
1818
- name: Lint

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: 20
22-
cache: "yarn"
22+
cache: 'yarn'
2323
- name: Install
2424
run: yarn --frozen-lockfile
2525
- name: Bundle

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
1111
- name: Set up Node
1212
uses: actions/setup-node@v4
1313
with:
14+
architecture: arm64
1415
node-version: 20
15-
cache: "yarn"
16+
cache: 'yarn'
1617
- name: Install
1718
run: yarn --frozen-lockfile
1819
- name: Test

0 commit comments

Comments
 (0)