Add option to pass ContainerClient instead of connection string, container, and credentials to AzureBlobCacheStorage #1125
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
build: | |
name: Run on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- name: yarn | |
run: yarn --frozen-lockfile | |
- name: verify change files | |
run: yarn checkchange | |
- name: check package versions | |
run: yarn syncpack:check | |
- run: yarn build | |
- run: yarn lint | |
- run: yarn format:check | |
- run: yarn test |