Fixed Uzbek native name in languages.ts #155
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: Countries JS | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/nodejs.yml' | |
- 'packages/countries/src/**' | |
- '!.editorconfig' | |
- '!.travis.yml' | |
- '!**LICENSE*' | |
- '!**README*' | |
jobs: | |
nodejs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20, 18, 16] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
node-version: ${{ matrix.node-version }} | |
- name: NPM install | |
run: npm install --prefer-offline --no-audit | |
env: | |
CI: true | |
- name: Build & Test | |
# Runs lint, build & tests | |
run: npm run ci | |
env: | |
CI: true |