diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5802f7d3..8b1346b1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,20 +6,13 @@ jobs: steps: - name: Begin CI... - uses: actions/checkout@v2 + uses: actions/checkout@v3 - - name: Use Node 12 - uses: actions/setup-node@v1 + - name: Use Node 14 + uses: actions/setup-node@v3 with: - node-version: 12.x - - - name: Use cached node_modules - uses: actions/cache@v1 - with: - path: node_modules - key: nodeModules-${{ hashFiles('yarn.lock') }} - restore-keys: | - nodeModules- + node-version: 14.x + cache: 'yarn' - name: Install dependencies run: yarn install --frozen-lockfile