Skip to content

fix(gcp-gcs): url encode path on read by default #87

fix(gcp-gcs): url encode path on read by default

fix(gcp-gcs): url encode path on read by default #87

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache 🏎
uses: actions/cache@v3
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install 📦
run: yarn --immutable
- name: Build 🏗
run: yarn build
- name: Test 🧪
run: yarn test