chore(deps-dev): bump @types/node from 20.17.9 to 20.17.10 #540
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: push | |
jobs: | |
build-app: | |
name: Build app | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install packages | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Bundle | |
if: ${{ matrix.node-version == 20 }} | |
run: npm run bundle | |
build-redis-stunnel: | |
name: Build redis-stunnel Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./docker | |
push: false | |
tags: osrecki/redis-stunnel:latest |