Reviewing building scheme #174
This file contains hidden or 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: Admin panel CI | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.4.1] | |
steps: | |
- name: Install `just` | |
uses: extractions/setup-just@v1 | |
- name: Download master branch | |
uses: actions/checkout@v2 | |
- name: Install Node.js with version ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install node modules | |
run: npm ci | |
- name: Run tests | |
run: just test |