Skip to content

Merge pull request #16 from black7375/dependabot/npm_and_yarn/word-wr… #123

Merge pull request #16 from black7375/dependabot/npm_and_yarn/word-wr…

Merge pull request #16 from black7375/dependabot/npm_and_yarn/word-wr… #123

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: pip cache
id: pip-cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: pip install -r ./requirements.txt
- run: yarn run lint
- run: yarn run build
env:
CI: true
- run: yarn test