Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Merge pull request #45 from SiddharthMantri/dependabot/npm_and_yarn/d… #118

Merge pull request #45 from SiddharthMantri/dependabot/npm_and_yarn/d…

Merge pull request #45 from SiddharthMantri/dependabot/npm_and_yarn/d… #118

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
checkout:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.13.0]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- run: git fetch
- run: git switch -c action-branch
- run: git rebase master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build:client
- run: git add .
- run: git commit -m "Merge and built from master"
- run: git push origin ci-branch
env:
CI: true