Skip to content

v6.1.0

v6.1.0 #94

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Integration Test
on:
push:
pull_request:
branches: [master]
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: echo '${{ secrets.GCP_SECRET }}' > gcp.json
- run: yarn test
env:
CI: true
AWS_ACCESS_KEY_ID: ${{ secrets.TEST_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.TEST_AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ap-southeast-2
S3_TEST_BUCKET: ${{ secrets.TEST_BUCKET }}
GOOGLE_APPLICATION_CREDENTIALS: gcp.json
NODE_OPTIONS: --experimental-vm-modules