Skip to content

build(deps-dev): bump typescript from 5.2.2 to 5.3.2 #887

build(deps-dev): bump typescript from 5.2.2 to 5.3.2

build(deps-dev): bump typescript from 5.2.2 to 5.3.2 #887

Workflow file for this run

name: Build and Deploy to Netlify
on:
push:
permissions:
statuses: write
deployments: write
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run build
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v2.1
with:
publish-dir: './dist'
# TODO: change to master
production-branch: develop
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