Skip to content

Merge branch 'main' of https://github.com/b3hr4d/ic-reactor #1

Merge branch 'main' of https://github.com/b3hr4d/ic-reactor

Merge branch 'main' of https://github.com/b3hr4d/ic-reactor #1

Workflow file for this run

name: Test and Deploy Docs to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "14" # Update the Node.js version as needed
cache: "yarn"
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Run Tests
run: |
yarn test
yarn e2e