Skip to content

Commit

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

on:
pull_request:
push:
branches:
- main
- whscullin/actions

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 f8505e5

Please sign in to comment.