Skip to content

Feedback set 1 | 1207086957634488 #451

Feedback set 1 | 1207086957634488

Feedback set 1 | 1207086957634488 #451

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Workflow to validate PRs
on:
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test:ci