Skip to content

Revert "maybe i signed a commit, probably didn't (#63)" (#64) #60

Revert "maybe i signed a commit, probably didn't (#63)" (#64)

Revert "maybe i signed a commit, probably didn't (#63)" (#64) #60

Workflow file for this run

name: Test
on:
pull_request_target:
push:
branches:
- main
jobs:
test-all:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Permission Check
uses: ./.github/actions/permission-check
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- 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