Skip to content

Commit

Permalink
Remove fixme
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelangelmorenochacon committed Jul 1, 2024
1 parent 636dd7c commit 0d332e6
Showing 1 changed file with 13 additions and 28 deletions.
41 changes: 13 additions & 28 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@ name: CI

on:
push:
# FIXME:
# branches: [main]
# branches: [feature/sc-420243/ci-configuration]
branches: [main]
tags: [v*]

# pull_request:
# FIMXE:
# branches: [main]
pull_request:
branches: [main]

jobs:
build:
Expand All @@ -18,9 +15,7 @@ jobs:

strategy:
matrix:
# FIXME:
# node-version: [18.x, 20.x, 22.x]
node-version: [18.x]
node-version: [18.x, 20.x, 22.x]

env:
CI: true
Expand All @@ -29,9 +24,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

###
##########################################################################
# Build
###
##########################################################################

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand All @@ -41,28 +36,21 @@ jobs:
- name: Enable Corepack
run: corepack enable

# - name: Install yarn
# run: |
# npm install -g yarn
# yarn --version

- name: Install
run: yarn install

- name: Build
run: yarn build

# FIXME:

# - name: Lint
# run: yarn lint
- name: Lint
run: yarn lint

# - name: Test
# run: yarn test
- name: Test
run: yarn test

###
# Release
###
##########################################################################
# Publish
##########################################################################

- name: Check tag format
id: check-tag-format
Expand Down Expand Up @@ -106,8 +94,5 @@ jobs:
- name: Publish package
if: startsWith(github.ref, 'refs/tags/')
env:
# The following token has been manually issued in the CartoDB
# organization for npmjs.com
NODE_AUTH_TOKEN: ${{ secrets.NPM_CARTODB_AUTH_TOKEN }}
RELEASE_TYPE: ${{ steps.get-release-type.outputs.result }}
run: yarn npm publish --tag ${RELEASE_TYPE}

0 comments on commit 0d332e6

Please sign in to comment.