Skip to content

Bump @types/node from 20.1.0 to 20.4.6 #1890

Bump @types/node from 20.1.0 to 20.4.6

Bump @types/node from 20.1.0 to 20.4.6 #1890

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
install:
name: Install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: yarn
test:
name: Test
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: yarn
- name: Test
run: yarn test
deploy:
name: Build and Deploy
needs: test
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: yarn
- name: Build and Deploy
run: |
git config user.email '[email protected]'
git config user.name 'Ian A. Cook'
git remote rm origin
git remote add origin '[email protected]:Susurrus-LLC/markov-words.git'
yarn deploy
env:
GITHUB_TOKEN: ${{ github.token }}