Update dependency @types/node to v16.18.122 #1631
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 | |
# https://github.com/actions/starter-workflows/blob/master/ci/npm-publish.yml | |
on: | |
[push,pull_request] | |
# https://github.com/actions/starter-workflows/issues/158 | |
# redis | |
# redis | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
NODE_ENV: ci | |
services: | |
redis: | |
image: redis:4.0.0 | |
ports: | |
- 6379:6379 | |
options: --entrypoint redis-server | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- run: npm install --dev | |
- run: npm run build | |
- run: npm run test |