merge with fix-2.1.0 #1255
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: 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 |