Update to pass appId when creating providers #634
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: | |
push: | |
branches: ['main'] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build: | |
name: Build and Test | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['18'] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Cache node modules | |
id: cache-nodemodules | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: | | |
node_modules | |
~/.cache | |
key: ${{ runner.os }}-buildv3-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-buildv3-${{ env.cache-name }}- | |
${{ runner.os }}-buildv3- | |
${{ runner.os }}- | |
- name: Install dependencies | |
run: npm install | |
- name: Format code | |
run: npm run format | |
- name: Lint code | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm run test |