Skip to content

replace legacy context API (#500) #10

replace legacy context API (#500)

replace legacy context API (#500) #10

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup node.js
uses: actions/[email protected]
with:
node-version: '14.18.2'
- name: Restore cache
uses: actions/cache@v3
with:
path: ~/.cache/yarn
key: yarn-node-modules-v1-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
- name: Run tests
run: yarn test:ci
- name: Upload code coverage report
run: ./node_modules/.bin/codecov