Skip to content

Commit 33606a6

Browse files
authored
chore: prerelease v0.3.1 (#305)
# Release - Bump minor prerelease version to 0.3.1 - Add changelog entry # CI - Add workspace lint step - Add formatting check job
1 parent d594fa6 commit 33606a6

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

.github/workflows/ci.yml

+23-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,26 @@ env:
2525
NODE_OPTIONS: --max-old-space-size=6144
2626

2727
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+
2848
lint:
2949
name: Lint
3050
runs-on: ubuntu-latest
@@ -37,7 +57,9 @@ jobs:
3757
- name: Install package dependencies
3858
run: yarn install --frozen-lockfile --no-interactive
3959

40-
- name: Lint
60+
- name: Lint workspace
61+
run: yarn nx workspace-lint
62+
- name: Lint all projects
4163
run: yarn lint
4264
test:
4365
name: Test

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Router Component Store changelog
22

3+
## 0.3.1 (2023-01-03)
4+
5+
### Features
6+
7+
- Add factory for selecting router events of specific types: `RouterStore#selectRouterEvents`
8+
39
## 0.3.0 (2022-12-19)
410

511
### Features

packages/router-component-store/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngworker/router-component-store",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "An Angular Router-connecting NgRx component store.",
55
"license": "MIT",
66
"peerDependencies": {

0 commit comments

Comments
 (0)