mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-01-03 21:43:08 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
name: Check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
## Try getting the node modules from cache, if failed npm ci
|
|
- uses: actions/cache@v2
|
|
id: cache-npm
|
|
with:
|
|
path: node_modules
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.OS }}-node-${{ env.cache-name }}-
|
|
${{ runner.OS }}-node-
|
|
${{ runner.OS }}-
|
|
- name: Install npm deps
|
|
if: steps.cache-npm.outputs.cache-hit != 'true'
|
|
run: npm ci
|
|
|
|
- name: Commit linting
|
|
uses: wagoid/commitlint-github-action@v2
|
|
|
|
- name: Code linting
|
|
run: npm run lint:check
|
|
env:
|
|
CI: true
|
|
|
|
- name: Types check
|
|
run: npm run types:check
|
|
|
|
- name: Build nodejs code
|
|
run: npm run build
|