You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
667 B
34 lines
667 B
2 years ago
|
name: Build code
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
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
|