Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
Migrate to NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Dec 14, 2021
1 parent e874fba commit 94fe7ea
Show file tree
Hide file tree
Showing 8 changed files with 18,256 additions and 3,822 deletions.
20 changes: 5 additions & 15 deletions .github/workflows/tuist-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set Node.js
uses: actions/setup-node@master
- uses: actions/setup-node@v2
with:
node-version: 12.x
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
node-version: '16'
cache: 'npm'
- name: Install dependencies
run: yarn install --pure-lockfile
run: npm install
- name: Run tests
run: yarn test
run: npm run test
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12
lts/*
1 change: 1 addition & 0 deletions node_modules/.bin/node-which

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 94fe7ea

Please sign in to comment.