Skip to content

Commit

Permalink
Merge pull request #13 from 1p22geo/patch-1
Browse files Browse the repository at this point in the history
ci: update CI for yarn v4
  • Loading branch information
imaarov authored Jun 7, 2024
2 parents 9905ed4 + 9ca4a62 commit 303660a
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
node-version: '20'

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

- name: Run Linter
run: npm run lint
run: yarn lint

deploy:
name: Deploy to Production
name: Build # right now it's not doing any deploying, there's not even like, a webpage
runs-on: ubuntu-latest

steps:
Expand All @@ -39,10 +39,17 @@ jobs:
node-version: '20'

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

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

- name: Upload build result
uses: actions/[email protected]
with:
name: dist
path: dist/


- name: Deploy
# Add your deployment steps here, such as deploying to a server or cloud provider
Expand Down

0 comments on commit 303660a

Please sign in to comment.