Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,6 @@ typings/

# next.js build output
.next

# Artifacts
*.svg
21 changes: 21 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Contributing

Welcome discussions, issues and PRs.

## Development

```shell
npm install
```

### Docker

While not required, you can also use [compose.yaml](compose.yaml) to execute commands.

```shell
docker compose run --rm node npm install
```

## Release

Execute [version-up.yml](.github/workflows/version-up.yml) which includes building package and updating version.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
required: true
default: 'qrcode.png'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
branding:
icon: 'grid'
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
node:
image: node:20
image: node:24
volumes:
- .:/app
working_dir: /app