8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deeb168 commit e6e7cd8Copy full SHA for e6e7cd8
.github/workflows/test.yaml
@@ -1,4 +1,4 @@
1
-name: Symfony UX
+name: Test
2
3
on:
4
pull_request:
@@ -10,11 +10,18 @@ jobs:
10
coding-style:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@master
14
- - name: Prettier
15
- run: |
16
- yarn
17
- yarn run check-format
+ - uses: actions/checkout@v4
+
+ - name: Install Node
+ uses: actions/setup-node@v4
+ 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
25
26
tests:
27
name: Tests (Node.js ${{ matrix.node-versions }})
0 commit comments