Skip to content

[Android] MediaStore Support #110

[Android] MediaStore Support

[Android] MediaStore Support #110

Workflow file for this run

name: Node CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node: ['18']
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: NPM Install
run: npm ci --network-concurrency 1
- name: Linting
run: npm run lint