We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc56d68 + 62c77ad commit a9ab409Copy full SHA for a9ab409
.github/workflows/prettier.yml
@@ -1,4 +1,4 @@
1
-name: autofix.ci
+name: Auto-format with Prettier
2
on:
3
pull_request:
4
.github/workflows/tests.yml
@@ -0,0 +1,25 @@
+name: Angular Tests
+
+on:
+ pull_request:
5
6
+permissions:
7
+ contents: read
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 20
19
+ cache: npm
20
21
+ - name: Install dependencies
22
+ run: npm ci --legacy-peer-deps
23
24
+ - name: Test
25
+ run: npm test
0 commit comments