chore: publish npm packages under @deepnote org without any other changes #38
This file contains hidden or 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: CI | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| ci: | |
| name: ${{ matrix.command }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| command: | |
| - 'test' | |
| - 'test:integration' | |
| - 'lint:eslint' | |
| - 'lint:prettier' | |
| - 'lint:typescript' | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 18.x | |
| key: node16 | |
| - name: Run ${{ matrix.command }} | |
| run: yarn && yarn build && yarn ${{ matrix.command }} | |
| env: | |
| CI: true | |
| NODE_OPTIONS: --openssl-legacy-provider |