Skip to content

Bump webpack from 5.65.0 to 5.89.0 #16

Bump webpack from 5.65.0 to 5.89.0

Bump webpack from 5.65.0 to 5.89.0 #16

Workflow file for this run

name: saber-interface
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
saber-interface:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Yarn Cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- name: Install Yarn dependencies
run: yarn install
- run: yarn typecheck
- run: yarn lint