Skip to content

Commit

Permalink
Github actions (#36)
Browse files Browse the repository at this point in the history
Github actions
  • Loading branch information
whscullin authored Mar 27, 2024
1 parent 20a9b2f commit 1aa049e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test

on:
pull_request:
push:
branches:
- main

jobs:
test-all:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: GCloud auth
uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.BIGQUERY_KEY }}'
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install
run: npm ci --loglevel error
- name: Build and Test
run: |
npm run lint
npm run build
npm run test-silent
npm run test-silent-e2e

0 comments on commit 1aa049e

Please sign in to comment.