chore: Updated version #708
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['16'] | |
name: Node ${{ matrix.node }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Upgrade yarn | |
run: yarn install | |
- name: Install | |
run: yarn | |
- name: Lint Code | |
run: yarn run lint:code | |
- name: Build | |
run: yarn run build | |
- name: Lint Markdown | |
run: yarn run lint:md | |
- name: Test | |
run: yarn test |