File tree 3 files changed +30
-2
lines changed
packages/router-component-store
3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 25
25
NODE_OPTIONS : --max-old-space-size=6144
26
26
27
27
jobs :
28
+ format :
29
+ name : Format
30
+ runs-on : ubuntu-latest
31
+
32
+ steps :
33
+ - name : Check out source code
34
+ uses : actions/checkout@v3
35
+ with :
36
+ # Required by nrwl/nx-set-shas
37
+ fetch-depth : 0
38
+ - name : Derive appropriate SHAs for base and head for `nx affected` commands
39
+ uses : nrwl/nx-set-shas@v3
40
+ - name : Set up Node.js and Yarn
41
+ uses : ./.github/actions/setup-node
42
+ - name : Install package dependencies
43
+ run : yarn install --frozen-lockfile --no-interactive
44
+
45
+ - name : Check formatting
46
+ run : yarn nx format:check
47
+
28
48
lint :
29
49
name : Lint
30
50
runs-on : ubuntu-latest
37
57
- name : Install package dependencies
38
58
run : yarn install --frozen-lockfile --no-interactive
39
59
40
- - name : Lint
60
+ - name : Lint workspace
61
+ run : yarn nx workspace-lint
62
+ - name : Lint all projects
41
63
run : yarn lint
42
64
test :
43
65
name : Test
Original file line number Diff line number Diff line change 1
1
# Router Component Store changelog
2
2
3
+ ## 0.3.1 (2023-01-03)
4
+
5
+ ### Features
6
+
7
+ - Add factory for selecting router events of specific types: ` RouterStore#selectRouterEvents `
8
+
3
9
## 0.3.0 (2022-12-19)
4
10
5
11
### Features
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @ngworker/router-component-store" ,
3
- "version" : " 0.3.0 " ,
3
+ "version" : " 0.3.1 " ,
4
4
"description" : " An Angular Router-connecting NgRx component store." ,
5
5
"license" : " MIT" ,
6
6
"peerDependencies" : {
You can’t perform that action at this time.
0 commit comments