Skip to content

sparse checkout with auth yml #15

sparse checkout with auth yml

sparse checkout with auth yml #15

Workflow file for this run

name: Gbajs3
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./gbajs3
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
sparse-checkout: gbajs3
sparse-checkout-cone-mode: false
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.1.0
- name: Install dependencies
run: |
npm ci
- name: Build
run: |
npm run build
- name: Lint
run: |
npm run lint
# TODO
# - name: Test
# run: |
# npm run test