Skip to content

fix: updating

fix: updating #812

Workflow file for this run

name: Jest tests
on: push
jobs:
jest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}
- name: Install modules
run: yarn
- name: Build
run: yarn build && yarn generate:shex
- name: Run tests
run: yarn test
env: # Or as an environment variable
SOLID_IDP: ${{ secrets.SOLID_IDP }}
SOLID_USERNAME: ${{ secrets.SOLID_USER }}
SOLID_PASSWORD: ${{ secrets.SOLID_PASSWORD }}