Skip to content

Commit

Permalink
chore: prerelease v0.3.1 (#305)
Browse files Browse the repository at this point in the history
# Release
- Bump minor prerelease version to 0.3.1
- Add changelog entry

# CI
- Add workspace lint step
- Add formatting check job
  • Loading branch information
LayZeeDK authored Jan 2, 2023
1 parent d594fa6 commit 33606a6
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
24 changes: 23 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,26 @@ env:
NODE_OPTIONS: --max-old-space-size=6144

jobs:
format:
name: Format
runs-on: ubuntu-latest

steps:
- name: Check out source code
uses: actions/checkout@v3
with:
# Required by nrwl/nx-set-shas
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
- name: Set up Node.js and Yarn
uses: ./.github/actions/setup-node
- name: Install package dependencies
run: yarn install --frozen-lockfile --no-interactive

- name: Check formatting
run: yarn nx format:check

lint:
name: Lint
runs-on: ubuntu-latest
Expand All @@ -37,7 +57,9 @@ jobs:
- name: Install package dependencies
run: yarn install --frozen-lockfile --no-interactive

- name: Lint
- name: Lint workspace
run: yarn nx workspace-lint
- name: Lint all projects
run: yarn lint
test:
name: Test
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Router Component Store changelog

## 0.3.1 (2023-01-03)

### Features

- Add factory for selecting router events of specific types: `RouterStore#selectRouterEvents`

## 0.3.0 (2022-12-19)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/router-component-store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngworker/router-component-store",
"version": "0.3.0",
"version": "0.3.1",
"description": "An Angular Router-connecting NgRx component store.",
"license": "MIT",
"peerDependencies": {
Expand Down

0 comments on commit 33606a6

Please sign in to comment.