[go: nahoru, domu]

Skip to content

Feat/translation handle #507

Feat/translation handle

Feat/translation handle #507

Workflow file for this run

name: main
on:
push:
pull_request:
branches: [develop]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
env:
# I do not understand which package makes this required. Or if this is required for everyone.
# Getting 405s without it.
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm run build
- run: npm run lint
- run: npm run test