feat: upgrade react-dom from 17.0.2 to 19.0.0 #1051
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: Deploy to Layer0 | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
deploy-to-layer0: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
registry-url: https://npm-proxy.fury.io/moovweb/ | |
- run: npm ci | |
- run: npm run layer0:deploy -- --token=$LAYER0_DEPLOY_TOKEN | |
env: | |
LAYER0_DEPLOY_TOKEN: ${{secrets.LAYER0_DEPLOY_TOKEN}} |