From c60c991a6601418ba4ac95f24e08187dea5d5254 Mon Sep 17 00:00:00 2001 From: Anders Sparrevohn Date: Tue, 9 Aug 2022 12:39:40 +0200 Subject: [PATCH] Add build code workflow --- .github/workflows/build-code.yml | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build-code.yml diff --git a/.github/workflows/build-code.yml b/.github/workflows/build-code.yml new file mode 100644 index 000000000..4a327343b --- /dev/null +++ b/.github/workflows/build-code.yml @@ -0,0 +1,34 @@ +name: Build code + +on: + workflow_dispatch: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node_version: + - 16 + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Use Node.js ${{ matrix.node_version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node_version }} + cache: 'yarn' + + - name: Install dependencies + run: yarn install --frozen-lockfile + + - name: Check formatting + run: yarn format:check + + - name: Execute tests + run: yarn test + + - name: Build application + run: yarn build:all