Skip to content

[_]: Feat/sync improve #1172

[_]: Feat/sync improve

[_]: Feat/sync improve #1172

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
name: 🧪 Lint and test
runs-on: windows-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Create .npmrc file
run: |
echo "registry=https://registry.yarnpkg.com/" > .npmrc
echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc
# You cannot read packages from other private repos with GITHUB_TOKEN
# You have to use a PAT instead https://github.com/actions/setup-node/issues/49
echo //npm.pkg.github.com/:_authToken=${{ secrets.PERSONAL_ACCESS_TOKEN }} >> .npmrc
echo "always-auth=true" >> .npmrc
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
install-command: yarn --ignore-scripts --frozen-lockfile
- name: Lint
run: yarn run lint
- name: Build processes
run: yarn build:main && yarn build:renderer
- name: Run test
run: yarn test:unit