name: "CI" on: push: branches: - master workflow_dispatch: jobs: ci: runs-on: ubuntu-latest strategy: matrix: node-version: [14.x, 16.x] steps: - name: checkout uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - name: Install packages run: yarn install --frozen-lockfile - name: Check Type run: cd web && yarn check:type - name: Check Build run: cd web && yarn build