Skip to content

update deps (#1079) #1317

update deps (#1079)

update deps (#1079) #1317

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/[email protected]
with:
node-version: 20.x
- run: npm ci
- name: save cache
uses: actions/[email protected]
with:
path: |
node_modules
dist
key: ${{ runner.os }}-cache-${{ hashFiles('**/package-lock.json') }}
lint:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/[email protected]
with:
node-version: 20.x
- name: download cache
uses: actions/[email protected]
with:
path: |
node_modules
dist
key: ${{ runner.os }}-cache-${{ hashFiles('**/package-lock.json') }}
- run: npm run lint
test:
runs-on: ubuntu-latest
needs: build
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: download cache
uses: actions/[email protected]
with:
path: |
node_modules
dist
key: ${{ runner.os }}-cache-${{ hashFiles('**/package-lock.json') }}
- run: npm rebuild
- run: ./node_modules/.bin/jest --ci --forceExit
env:
REDIS_HOST: localhost
REDIS_PORT: 6379
complete:
runs-on: ubuntu-latest
needs: [test, lint]
steps:
- run: echo "Done!"