Skip to content

Commit

Permalink
ci: minor pipeline fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliosheinz committed May 14, 2024
1 parent 98a2315 commit b382c15
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Check out code
uses: actions/checkout@v4

- name: Set up node
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: "yarn"

- name: Install dependencies
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/lint-type-check-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,20 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
node-version: 20
cache: "yarn"

- name: Setup .env file
run: echo "${{ secrets.DOT_ENV_FILE_CONTENT }}" > .env

- name: Install dependencies
run: npm install
run: yarn

- name: Lint
run: npm run lint
run: yarn lint

- name: Type check
run: npm run type-check
run: yarn type-check

- name: Build
run: npm run build
run: yarn build

0 comments on commit b382c15

Please sign in to comment.