Skip to content

Fix deploy: point preload-data at the cjs build output #161

Fix deploy: point preload-data at the cjs build output

Fix deploy: point preload-data at the cjs build output #161

Workflow file for this run

name: CI
on: [pull_request]
jobs:
linked_issue:
name: Jira
runs-on: ubuntu-latest
steps:
- uses: openstax/jira-linked-action@v0.1.16
with:
jira_site: openstax
jira_project: DISCO
jira_email: ${{ secrets.JIRA_EMAIL }}
jira_token: ${{ secrets.JIRA_TOKEN }}
test:
name: checks
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
strategy:
fail-fast: false
matrix:
module: [lambda, frontend, orn-locator]
env:
CI: true
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- run: echo '//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}' >> ~/.npmrc
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run build
- run: npm run ci
working-directory: packages/${{ matrix.module }}