Skip to content

chore: housekeeping and dependency updates #409

chore: housekeeping and dependency updates

chore: housekeeping and dependency updates #409

# This workflow will do a clean install of node dependencies, cache/restore them, 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: 🔍 Continuous Integration
on:
pull_request:
branches:
- main
jobs:
check-format-and-build:
name: "Check and build package"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: "yarn"
- run: yarn install --immutable
- run: yarn format:check
- run: yarn test
- run: yarn build:package