Skip to content

npm: update dependencies #21

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

Merged
merged 9 commits into from
Feb 11, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- '2.9'
nightly: [false]
include:
- {runs-on: ubuntu-20.04, tarantool: '1.10', nightly: true}
- {runs-on: ubuntu-18.04, tarantool: '1.10', nightly: true}
- {runs-on: ubuntu-16.04, tarantool: '1.10', nightly: true}
runs-on: ${{ matrix.runs-on }}
env:
TARANTOOL_CACHE_KEY_SUFFIX: -A-${{ github.run_id }}
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/node_modules
/lib

# Vim Swap files.
.*.sw[a-z]
18 changes: 18 additions & 0 deletions HACKING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## First steps

Clone the repository and install dependencies.

```shell
$ git clone git@github.com:tarantool/setup-tarantool.git
$ cd setup-tarantool
$ npm install
```

## Contribute

Edit the source and regenerate the `index.js` file.

```shell
$ vim src/main.ts
$ npm run pre-checkin
```
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,5 @@ The scripts and documentation in this project are released under the [MIT Licens
# Contributions

Contributions are welcome! Just open an issue or send a pull request.

Check out [HACKING.md](./HACKING.md) file for hints.
Loading