Skip to content

fix assignment path with kz locale #258

fix assignment path with kz locale

fix assignment path with kz locale #258

Workflow file for this run

# Name of workflow
name: Node CI
# Trigger the workflow on push or pull request
on:
- push
- pull_request
jobs:
build:
# The type of machine to run the job on
runs-on: ${{ matrix.os }}
strategy:
matrix:
# OS list
os: [ubuntu-latest, windows-latest, macos-latest]
# Node versions list
node-version: [14, 16, 18]
steps:
# When using the package on windows, line breaks will not be converted
- run: git config --global core.autocrlf false
# Check-out repository under GitHub workspace
# https://github.com/actions/checkout
- uses: actions/checkout@v3
# Step's name
- name: Use Node.js ${{ matrix.node-version }}
# Configures the node version used on GitHub-hosted runners
# https://github.com/actions/setup-node
uses: actions/setup-node@v3
# The Node.js version to configure
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
# Install project
run: |
make install
# Add environment variables
env:
CI: true
- name: Run linter
run: |
make lint
- name: Test
run: |
make test