Skip to content

chore(release): 0.0.1-0 #29

chore(release): 0.0.1-0

chore(release): 0.0.1-0 #29

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install
run: npm install
- name: Run lint
run: npm run lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install
run: npm install
- name: Run typecheck
run: npm run typecheck
tests-main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version:
- 20.10.0
- 21.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Run tests
run: npm test main
env:
GCS_KEY: ${{ secrets.GCS_KEY }}
GCS_BUCKET: drive-gcs
GCS_FINE_GRAINED_ACL_BUCKET: drive-gcs-no-uniform-acl
tests-gcs:
runs-on: ${{ matrix.os }}
concurrency:
group: gcs
strategy:
matrix:
os: [ubuntu-latest]
node-version:
- 21.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Run tests
run: npm test gcs
env:
GCS_KEY: ${{ secrets.GCS_KEY }}
GCS_BUCKET: drive-gcs
GCS_FINE_GRAINED_ACL_BUCKET: drive-gcs-no-uniform-acl