chore(deps): update dependency redis to v4.7.0 #1650
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: CI | |
on: | |
push: | |
branches: [master, develop] | |
pull_request: | |
branches: [master, develop] | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Update npm | |
run: npm install -g npm@7 | |
- name: Node version | |
run: node --version && npm --version | |
- name: Installing node packages | |
run: npm ci | |
- name: Building | |
run: npm run build | |
- name: Code generation | |
run: npm run generate | |
- name: Test code generation | |
run: npm run generate | |
- name: Testing | |
run: npm run test | |
- name: ESLint | |
run: npm run lint |