Compare commits

...

2 Commits

Author SHA1 Message Date
standardci
ee47f8246d chore(release): publish
- @standardnotes/scheduler-server@1.1.0-alpha.1
2022-06-20 09:13:55 +00:00
Karol Sójko
586cdedf13 fix: remove pure lockfile flag from yarn installs 2022-06-20 11:13:10 +02:00
4 changed files with 9 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: yarn install --pure-lockfile
- run: yarn install
- run: yarn test
publish-aws-ecr:

View File

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0-alpha.1](https://github.com/standardnotes/server/compare/@standardnotes/scheduler-server@1.1.0-alpha.0...@standardnotes/scheduler-server@1.1.0-alpha.1) (2022-06-20)
### Bug Fixes
* remove pure lockfile flag from yarn installs ([586cded](https://github.com/standardnotes/server/commit/586cdedf13332677520d891392c65368f5dc2f1b))
# 1.1.0-alpha.0 (2022-06-20)
### Bug Fixes

View File

@@ -18,7 +18,7 @@ USER scheduler
COPY --chown=$UID:$GID package.json yarn.lock /var/www/
RUN yarn install --pure-lockfile
RUN yarn install
COPY --chown=$UID:$GID . /var/www

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/scheduler-server",
"version": "1.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"engines": {
"node": ">=16.0.0 <17.0.0"
},