8000 [CI] Improve "coding-style" job, and run Biome instead · symfony/stimulus-bridge@e6e7cd8 · GitHub
[go: up one dir, main page]

Skip to content

Commit e6e7cd8

Browse files
committed
[CI] Improve "coding-style" job, and run Biome instead
1 parent deeb168 commit e6e7cd8

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/test.yaml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Symfony UX
1+
name: Test
22

33
on:
44
pull_request:
@@ -10,11 +10,18 @@ jobs:
1010
coding-style:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@master
14-
- name: Prettier
15-
run: |
16-
yarn
17-
yarn run check-format
13+
- uses: actions/checkout@v4
14+
15+
- name: Install Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: 14 # lowest supported version
19+
20+
- name: Install Yarn Dependencies
21+
run: yarn install
22+
23+
- name: Run Biome
24+
run: yarn run ci
1825

1926
tests:
2027
name: Tests (Node.js ${{ matrix.node-versions }})

0 commit comments

Comments
 (0)
0