Skip to content

bump ts utils again #149

bump ts utils again

bump ts utils again #149

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
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: npm ci
- run: npm run build
- run: npm run ci
working-directory: packages/${{ matrix.module }}