Allow partial records for objChain creation #100
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: On Push | |
on: [push] | |
jobs: | |
audit: | |
name: Audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@main | |
- run: npm audit | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@main | |
- uses: actions/cache@main | |
id: cache-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
- uses: actions/cache@main | |
if: steps.cache-modules.outputs.cache-hit != 'true' | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-global | |
- run: npm ci | |
if: steps.cache-modules.outputs.cache-hit != 'true' | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
- run: npm run lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@main | |
- uses: actions/cache@main | |
id: cache-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
- uses: actions/cache@main | |
if: steps.cache-modules.outputs.cache-hit != 'true' | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-global | |
- run: npm ci | |
if: steps.cache-modules.outputs.cache-hit != 'true' | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
- run: npm run test | |
- run: npm run build | |
publish-gpr: | |
name: Publish Version | |
needs: [test, lint] | |
runs-on: ubuntu-latest | |
if: "contains(github.ref, 'main') && !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@main | |
- run: git fetch --tags | |
- uses: actions/cache@main | |
id: cache-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
- uses: actions/cache@main | |
if: steps.cache-modules.outputs.cache-hit != 'true' | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-global | |
- run: npm ci | |
if: steps.cache-modules.outputs.cache-hit != 'true' | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
- run: npm run build | |
- run: npx auto shipit | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |