Skip to content

Merge pull request #265 from PaulRBerg/docs/update-funding-url #126

Merge pull request #265 from PaulRBerg/docs/update-funding-url

Merge pull request #265 from PaulRBerg/docs/update-funding-url #126

Workflow file for this run

name: "Continuous Integration"
env:
GH_OAUTH_TOKEN: ${{ secrets.GH_OAUTH_TOKEN }}
on:
push:
branches:
- "develop"
- "staging"
jobs:
integration:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
cache: "yarn"
node-version: "16"
- name: "Install dependencies"
run: "yarn install --immutable"
- name: "Lint code"
run: "yarn lint"
- name: "Run unit tests"
run: "yarn test:unit"
- name: "Run integration tests"
run: "yarn test:integration"