Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): 1.0.2 #49

Merged
merged 9 commits into from
Jun 21, 2024
51 changes: 0 additions & 51 deletions .circleci/config.yml

This file was deleted.

6 changes: 4 additions & 2 deletions .github/workflows/tag-major-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ jobs:
update_tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
git config user.name github-actions
git config user.email [email protected]
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Tests

on: push

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build

lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint

test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run test
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.0.2](https://github.com/dequelabs/action-sync-branches/compare/v1.0.1...v1.0.2) (2024-06-21)


### Bug Fixes

* avoid "Error: Not Found" when octokit gives status as string instead of number ([#46](https://github.com/dequelabs/action-sync-branches/issues/46)) ([5395589](https://github.com/dequelabs/action-sync-branches/commit/539558909e73fb86ac5efd15c3fedcda48fbdc71)), closes [#45](https://github.com/dequelabs/action-sync-branches/issues/45)

### [1.0.1](https://github.com/dequelabs/action-sync-branches/compare/v1.0.0...v1.0.1) (2020-11-10)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:12-alpine
FROM node:20-alpine

WORKDIR /app
COPY . /app

RUN npm install
RUN npm ci
RUN npm run build
ENTRYPOINT ["node", "/app/lib/main.js"]
Loading