Skip to content

Commit

Permalink
chore(release): 1.0.2 (#49)
Browse files Browse the repository at this point in the history
merge (do not squash)

validation run:
https://github.com/dequelabs/dbjorge-test-repo/actions/runs/9619252233

## Reviewer checks

**Required fields, to be filled out by PR reviewer(s)**

- [x] Follows the commit message policy, appropriate for next version
- [x] Code is reviewed for security
  • Loading branch information
dbjorge authored Jun 21, 2024
2 parents 76011e7 + 555ebb3 commit 851ced0
Show file tree
Hide file tree
Showing 10 changed files with 5,223 additions and 5,210 deletions.
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

0 comments on commit 851ced0

Please sign in to comment.