Skip to content

Commit

Permalink
Merge pull request #77 from Decentraland-DAO/fix/node-version-upgrade
Browse files Browse the repository at this point in the history
fix: Action run fail
  • Loading branch information
ncomerci authored Nov 21, 2023
2 parents 930ca02 + d417983 commit 66f3055
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm install && npm link typescript
node-version: '18'
- run: npm install

- name: Pull Proposals
env:
Expand Down
15 changes: 11 additions & 4 deletions src/interfaces/GovernanceProposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ export interface GovernanceProposal {
enacted_description: null | string
enacting_tx: string | null
deleted: boolean
start_at: Date
finish_at: Date
created_at: Date
updated_at: Date
start_at: string
finish_at: string
created_at: string
updated_at: string
enacted_by: string | null
deleted_by: string | null
required_to_pass: number
Expand Down Expand Up @@ -66,6 +66,13 @@ export enum Category {
ContentCreator = 'Content Creator',
Gaming = 'Gaming',
PlatformContributor = 'Platform Contributor',
CoreUnit = 'Core Unit',
Platform = 'Platform',
InWorldContent = 'In-World Content',
SocialMediaContent = 'Social Media Content',
Sponsorship = 'Sponsorship',
Documentation = 'Documentation',
Accelerator = 'Accelerator',
}

export enum ConfigurationType {
Expand Down
4 changes: 2 additions & 2 deletions src/interfaces/Proposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export type ProposalParsed = {
user: string
type: string
title: string
start_at: Date
finish_at: Date
start_at: string
finish_at: string
required_to_pass: number
status: Status
configuration: Configuration
Expand Down

0 comments on commit 66f3055

Please sign in to comment.