Skip to content

Create dependabot.yml (#297) #286

Create dependabot.yml (#297)

Create dependabot.yml (#297) #286

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: 🚚 Deploy
runs-on: ubuntu-latest
environment: Staging
permissions:
contents: read
packages: read
steps:
- name: πŸ“₯ Checkout
uses: actions/checkout@v2
- name: πŸ“¦ Setup Node
uses: actions/setup-node@v2
with:
node-version: '18.x'
registry-url: 'https://npm.pkg.github.com'
cache: npm
- name: πŸ“¦ Install dependencies
run: npm ci --audit=false
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: πŸ—οΈ Build
run: npm run build
- name: πŸš€ Deploy to Netlify
uses: nwtgck/actions-netlify@v1.2
with:
publish-dir: './dist'
production-deploy: true
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1