Skip to content

Bump the npm_and_yarn group group with 2 updates #48

Bump the npm_and_yarn group group with 2 updates

Bump the npm_and_yarn group group with 2 updates #48

Workflow file for this run

name: Build and test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci && cd functions && npm ci
- name: Build functions
run: cd functions && npm run build
- name: Run tests
run: npm run test:ci