Cache dependencies in CI

This commit is contained in:
Nathan Bierema 2022-01-22 16:54:35 -05:00
parent 0576588a1a
commit 4f39c3d503

View File

@ -12,6 +12,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: 'yarn'
- run: yarn install - run: yarn install
- run: yarn format:check - run: yarn format:check
- run: yarn build:all - run: yarn build:all