update icon.svg + name and description (#30) #77
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: Build and Test Packages | |
on: [push] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
env: | |
REDISMS_SYSTEM_BINARY: "/usr/bin/redis-server" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
- name: install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "v18.12.1" | |
cache: "yarn" | |
- name: corepack enable | |
run: corepack enable | |
- name: yarn install | |
run: | | |
yarn install --immutable | |
- name: yarn lint | |
run: | | |
yarn lint | |
- name: yarn prettier | |
run: | | |
yarn prettier:check | |
- name: yarn build | |
run: | | |
yarn build | |
- name: yarn test:unit | |
run: | | |
yarn test:unit |