Skip to content

Commit

Permalink
fix a bunch of things
Browse files Browse the repository at this point in the history
  • Loading branch information
roginfarrer committed Sep 5, 2021
1 parent 5b6e076 commit 9847257
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/main.yml
Expand Up @@ -4,25 +4,28 @@ jobs:
build:
runs-on: ubuntu-latest

env:
YARN_ENABLE_MIRROR: "false"
YARN_ENABLE_GLOBAL_CACHE: "false"

steps:
- name: Begin CI...
uses: actions/checkout@v2

- name: Use Node 12
- name: Use Node 14
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x

- name: Use cached node_modules
uses: actions/cache@v2
- uses: actions/cache@v2
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
path: .yarn/cache
key: yarn2-${{ hashFiles('yarn.lock') }}
restore-keys: |
nodeModules-
yarn2-
- name: Install dependencies
run: yarn install --immutable
run: yarn --immutable
env:
CI: true

Expand Down

0 comments on commit 9847257

Please sign in to comment.