Skip to content

update dependencies to fix jest tests for modules #20

update dependencies to fix jest tests for modules

update dependencies to fix jest tests for modules #20

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
tags: ["*"]
pull_request:
branches: ["main"]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
publish:
name: Publish
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
registry-url: https://registry.npmjs.org/
- run: yarn install --frozen-lockfile
- run: npm publish || true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}