Skip to content

feat: working resume export again #63

feat: working resume export again

feat: working resume export again #63

Workflow file for this run

name: vmello-website-ci
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.yarn
key: ${{ runner.os }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test