Skip to content

Use Mint 0.20.0

Use Mint 0.20.0 #34

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Mint
uses: fabasoad/setup-mint-action@main
with:
version: 0.20.0
- name: Install Dependencies
run: mint install
- name: Run Tests
run: mint test
- name: Build
run: mint build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
production-deploy: true
publish-dir: dist
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}